Skip to content

Commit

Permalink
Add support for declaring additional dialect support, where the diale…
Browse files Browse the repository at this point in the history
…ct originates outside of the JSON Schema project.

In response to https://github.com/json-schema-org/ecosystem/pull/12\#discussion_r1637563931
  • Loading branch information
Relequestual committed Jun 17, 2024
1 parent 6fda5a5 commit 1de97da
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions projects/tooling-self-identification/identification.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,32 @@
},
"additionalProperties": false
},
"supportedDialectsExtended": {
"description": "Additional Dialects that are supported beyond the ones defined by the JSON Schema project, such as the OpenAPI Dialect.",
"type": "array",
"items": {
"description": "Individual JSON Schema Dialect items",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"homepage": {
"type": "string",
"format": "uri"
},
"source": {
"type": "string",
"format": "uri"
}
},
"required": [
"name",
"source"
],
"additionalProperties": false
}
},
"bowtie": {
"description": "Information related to compliance testing by Bowtie - https://bowtie.report - Presence of this property implies the tool is being tested in Bowtie",
"type": "object",
Expand Down

0 comments on commit 1de97da

Please sign in to comment.