Skip to content

Commit

Permalink
Move additional supported dialects inside of existing supported diale…
Browse files Browse the repository at this point in the history
…cts object
  • Loading branch information
Relequestual committed Jun 17, 2024
1 parent d1bdb67 commit 6e29bf1
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions projects/tooling-self-identification/identification.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -217,36 +217,36 @@
"2020-12"
]
}
},
"additional": {
"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
}
}
},
"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 6e29bf1

Please sign in to comment.