From 6e29bf17452442c4ca7ac95e9dedc36c1236f4ca Mon Sep 17 00:00:00 2001 From: Ben Hutton Date: Mon, 17 Jun 2024 09:44:44 +0100 Subject: [PATCH] Move additional supported dialects inside of existing supported dialects object --- .../identification.schema.json | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/projects/tooling-self-identification/identification.schema.json b/projects/tooling-self-identification/identification.schema.json index aafe621..113e5ca 100644 --- a/projects/tooling-self-identification/identification.schema.json +++ b/projects/tooling-self-identification/identification.schema.json @@ -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",