From 8f564734ebb4e057cfc25d85bf60b9cf62dba8f6 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 01:26:20 +0000 Subject: [PATCH 01/36] Migrated UnifiedJS to draft-07 (#6030) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 9 +++-- src/schemas/json/mdxlintrc.json | 30 ++------------ src/schemas/json/rehyperc.json | 36 +++-------------- src/schemas/json/remarkrc.json | 70 +++++++++++++++++++++++---------- 4 files changed, 65 insertions(+), 80 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index d2366e2594e..38c9fd0ea03 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -158,7 +158,6 @@ "lerna.json", "libman.json", "lintstagedrc.schema.json", - "mdxlintrc.json", "metricshub.json", "metricshub-connector.json", "minecraft-advancement.json", @@ -215,8 +214,6 @@ "putout.json", "pyrseas-0.8.json", "pylock.json", - "rehyperc.json", - "remarkrc.json", "renovate-39.json", "renovate-40.json", "renovate-41.json", @@ -1306,6 +1303,9 @@ "maturin.json": { "unknownFormat": ["uint16"] }, + "mdxlintrc.json": { + "externalSchema": ["remarkrc.json"] + }, "minecraft-advancement.json": { "externalSchema": ["base.json"] }, @@ -1501,6 +1501,9 @@ "pep561-stub-name" ] }, + "rehyperc.json": { + "externalSchema": ["remarkrc.json"] + }, "renovate-41.json": { "unknownKeywords": ["allowComments", "x-renovate-version"] }, diff --git a/src/schemas/json/mdxlintrc.json b/src/schemas/json/mdxlintrc.json index f0e273cb238..e15189c6427 100644 --- a/src/schemas/json/mdxlintrc.json +++ b/src/schemas/json/mdxlintrc.json @@ -1,34 +1,10 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/mdxlintrc.json", "additionalProperties": false, - "id": "https://json.schemastore.org/mdxlintrc.json", "properties": { "plugins": { - "description": "The plugins field, related to plugins in options, has either an array of plugin names (or paths) or plugin–options tuples, or an object mapping plugins to their options.\nPlugin options can be false, which specifies that a plugin should not be used. In all other cases, they are treated as an object, and merged by the cascade. Thus, it's possible to specify part of the options from one configuration file, and overwrite or extend it from another file.", - "oneOf": [ - { - "type": "array", - "items": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "additionalItems": true, - "items": [ - { - "type": "string" - } - ] - } - ] - } - }, - { - "type": "object" - } - ] + "$ref": "remarkrc.json#/properties/plugins" }, "settings": { "type": "object", diff --git a/src/schemas/json/rehyperc.json b/src/schemas/json/rehyperc.json index 18b0347c144..6824f899c07 100644 --- a/src/schemas/json/rehyperc.json +++ b/src/schemas/json/rehyperc.json @@ -1,34 +1,10 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/rehyperc.json", "additionalProperties": false, - "id": "https://json.schemastore.org/rehyperc.json", "properties": { "plugins": { - "description": "The plugins field, related to plugins in options, has either an array of plugin names (or paths) or plugin–options tuples, or an object mapping plugins to their options.\nPlugin options can be false, which specifies that a plugin should not be used. In all other cases, they are treated as an object, and merged by the cascade. Thus, it's possible to specify part of the options from one configuration file, and overwrite or extend it from another file.", - "oneOf": [ - { - "type": "array", - "items": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "additionalItems": true, - "items": [ - { - "type": "string" - } - ] - } - ] - } - }, - { - "type": "object" - } - ] + "$ref": "remarkrc.json#/properties/plugins" }, "settings": { "type": "object", @@ -36,7 +12,7 @@ "properties": { "fragment": { "description": "Specify whether to parse a fragment, instead of a complete document. In document mode, unopened html, head, and body elements are opened in just the right places.", - "type": ["boolean"], + "type": "boolean", "default": false }, "space": { @@ -46,12 +22,12 @@ }, "emitParseErrors": { "description": "Emit parse errors while parsing on the vfile.\n\nSetting this to true starts emitting HTML parse errors.\n\nSpecific rules can be turned off by setting them to false (or 0). The default, when emitParseErrors: true, is true (or 1), and means that rules emit as warnings. Rules can also be configured with 2, to turn them into fatal errors.", - "type": ["boolean"], + "type": "boolean", "default": false }, "verbose": { "description": "Patch extra positional information. If specified, the following element:", - "type": ["boolean"], + "type": "boolean", "default": false }, "entities": { diff --git a/src/schemas/json/remarkrc.json b/src/schemas/json/remarkrc.json index 78006120dcb..fc9f95316fe 100644 --- a/src/schemas/json/remarkrc.json +++ b/src/schemas/json/remarkrc.json @@ -1,32 +1,62 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/remarkrc.json", "additionalProperties": false, - "id": "https://json.schemastore.org/remarkrc.json", - "properties": { - "plugins": { - "description": "The plugins field, related to plugins in options, has either an array of plugin names (or paths) or plugin–options tuples, or an object mapping plugins to their options.\nPlugin options can be false, which specifies that a plugin should not be used. In all other cases, they are treated as an object, and merged by the cascade. Thus, it's possible to specify part of the options from one configuration file, and overwrite or extend it from another file.", + "definitions": { + "partialPluginOptions": { "oneOf": [ { - "type": "array", - "items": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "additionalItems": true, - "items": [ - { + "type": "string" + }, + { + "type": "object", + "patternProperties": { + ".*": { + "type": "boolean" + } + } + } + ] + }, + "pluginArray": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/definitions/partialPluginOptions" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/partialPluginOptions" + }, + { + "type": "array", + "items": { "type": "string" } - ] - } - ] + } + ] + } } + ] + } + }, + "pluginObject": { + "type": "object" + } + }, + "properties": { + "plugins": { + "description": "The plugins field, related to plugins in options, has either an array of plugin names (or paths) or plugin–options tuples, or an object mapping plugins to their options.\nPlugin options can be false, which specifies that a plugin should not be used. In all other cases, they are treated as an object, and merged by the cascade. Thus, it's possible to specify part of the options from one configuration file, and overwrite or extend it from another file.", + "oneOf": [ + { + "$ref": "#/definitions/pluginArray" }, { - "type": "object" + "$ref": "#/definitions/pluginObject" } ] }, From 0cb7fee4fae9e0121ade31bbc3ae8ce67acee3e4 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 01:31:16 +0000 Subject: [PATCH 02/36] Migrated ninjs-*.json to draft-07 (#6037) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 2 - src/schemas/json/ninjs-1.0.json | 4 +- src/schemas/json/ninjs-1.1.json | 4 +- src/schemas/json/ninjs-1.2.json | 4 +- src/schemas/json/ninjs-1.3.json | 4 +- src/schemas/json/ninjs-1.4.json | 31 +++++++------ src/schemas/json/ninjs-2.0.json | 79 ++++++++++++++++----------------- 7 files changed, 63 insertions(+), 65 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 38c9fd0ea03..d85d62d37e4 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -173,8 +173,6 @@ "nest-cli.json", "netlify.json", "nightwatch.json", - "ninjs-1.4.json", - "ninjs-2.0.json", "now.json", "npmpackagejsonlintrc.json", "nswag.json", diff --git a/src/schemas/json/ninjs-1.0.json b/src/schemas/json/ninjs-1.0.json index ae37440b99a..1c9403444e3 100644 --- a/src/schemas/json/ninjs-1.0.json +++ b/src/schemas/json/ninjs-1.0.json @@ -1,8 +1,8 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.0.json#", "additionalProperties": false, "description": "A news item as JSON object -- copyright 2013 IPTC - International Press Telecommunications Council - www.iptc.org - This document is published under the Creative Commons Attribution 3.0 license, see http://creativecommons.org/licenses/by/3.0/ $$comment: as of 2013-11-07, edited by MS for the IPTC ninjs-dev group ", - "id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.0.json#", "patternProperties": { "^description_[a-zA-Z0-9_]+": { "description": "A free-form textual description of the content of the item. (The string appended to description_ in the property name should reflect the format of the text)", diff --git a/src/schemas/json/ninjs-1.1.json b/src/schemas/json/ninjs-1.1.json index 3c0e46bc680..1855c8040d0 100644 --- a/src/schemas/json/ninjs-1.1.json +++ b/src/schemas/json/ninjs-1.1.json @@ -1,8 +1,8 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.1.json#", "additionalProperties": false, "description": "A news item as JSON object -- copyright 2014 IPTC - International Press Telecommunications Council - www.iptc.org - This document is published under the Creative Commons Attribution 3.0 license, see http://creativecommons.org/licenses/by/3.0/ $$comment: as of 2014-03-13 ", - "id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.1.json#", "patternProperties": { "^description_[a-zA-Z0-9_]+": { "description": "A free-form textual description of the content of the item. (The string appended to description_ in the property name should reflect the format of the text)", diff --git a/src/schemas/json/ninjs-1.2.json b/src/schemas/json/ninjs-1.2.json index 7a9b023c627..74ee719f69a 100644 --- a/src/schemas/json/ninjs-1.2.json +++ b/src/schemas/json/ninjs-1.2.json @@ -1,8 +1,8 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.2.json#", "additionalProperties": false, "description": "A news item as JSON object -- copyright 2019 IPTC - International Press Telecommunications Council - www.iptc.org - This document is published under the Creative Commons Attribution 4.0 license, see http://creativecommons.org/licenses/by/4.0/ $$comment: as of 2019-10-16 ", - "id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.2.json#", "patternProperties": { "^description_[a-zA-Z0-9_]+": { "title": "Description", diff --git a/src/schemas/json/ninjs-1.3.json b/src/schemas/json/ninjs-1.3.json index 69023a9c85f..faf968e0d64 100644 --- a/src/schemas/json/ninjs-1.3.json +++ b/src/schemas/json/ninjs-1.3.json @@ -1,8 +1,8 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.3.json#", "additionalProperties": false, "description": "A news item as JSON object -- copyright 2020 IPTC - International Press Telecommunications Council - www.iptc.org - This document is published under the Creative Commons Attribution 4.0 license, see http://creativecommons.org/licenses/by/4.0/", - "id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.3.json#", "patternProperties": { "^description_[a-zA-Z0-9_]+": { "title": "Description", diff --git a/src/schemas/json/ninjs-1.4.json b/src/schemas/json/ninjs-1.4.json index c82235711c6..c33a4bd2177 100644 --- a/src/schemas/json/ninjs-1.4.json +++ b/src/schemas/json/ninjs-1.4.json @@ -1,6 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.4.json#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.4.json#", "type": "object", "title": "IPTC ninjs - News in JSON - version 1.4 (approved, 18 May 2022)", "description": "A news item as JSON object -- copyright 2022 IPTC - International Press Telecommunications Council - www.iptc.org - This document is published under the Creative Commons Attribution 4.0 license, see http://creativecommons.org/licenses/by/4.0/", @@ -584,25 +584,28 @@ "title": "Language id", "description": "Identifier for the Rights Expression language used. nar:@langid", "format": "uri" - }, - "linkedrights": { - "title": "Linked rights", - "description": "A link from the current Item to Web resource with rights related information. nar:link", - "type": "string", - "format": "uri" - }, - "encodedrights": { - "title": "Encoded Rights", - "additionalProperties": false, - "type": "string", - "description": "Contains a rights expression as defined by a Rights Expression Language. nar:rightsExpressionXML or nar:rightsExpressionData" } }, "oneOf": [ { + "properties": { + "linkedrights": { + "title": "Linked rights", + "description": "A link from the current Item to Web resource with rights related information. nar:link", + "type": "string", + "format": "uri" + } + }, "required": ["linkedrights"] }, { + "properties": { + "encodedrights": { + "title": "Encoded Rights", + "type": "string", + "description": "Contains a rights expression as defined by a Rights Expression Language. nar:rightsExpressionXML or nar:rightsExpressionData" + } + }, "required": ["encodedrights"] } ] diff --git a/src/schemas/json/ninjs-2.0.json b/src/schemas/json/ninjs-2.0.json index cb2618b82c6..b126c3b9292 100644 --- a/src/schemas/json/ninjs-2.0.json +++ b/src/schemas/json/ninjs-2.0.json @@ -280,37 +280,33 @@ "places": { "title": "Places", "description": "An array of named locations. nar:subject", - "additionalProperties": false, "type": "array", "items": { "type": "object", - "anyOf": [ - { - "properties": { - "name": { - "title": "Name", - "description": "The name of the place", - "type": "string" - }, - "rel": { - "title": "Relationship", - "description": "The relationship of the content of the news object to the place", - "type": "string" - }, - "uri": { - "title": "URI", - "description": "The identifier for the place as a complete uri", - "type": "string", - "format": "uri" - }, - "literal": { - "title": "Literal", - "description": "The code for the place as a literal", - "type": "string" - } - } + "additionalProperties": true, + "properties": { + "name": { + "title": "Name", + "description": "The name of the place", + "type": "string" + }, + "rel": { + "title": "Relationship", + "description": "The relationship of the content of the news object to the place", + "type": "string" + }, + "uri": { + "title": "URI", + "description": "The identifier for the place as a complete uri", + "type": "string", + "format": "uri" + }, + "literal": { + "title": "Literal", + "description": "The code for the place as a literal", + "type": "string" } - ] + } } }, "subjects": { @@ -466,7 +462,6 @@ "title": "Renditions", "description": "An array of objects with different renditions of the news object. nar:remoteContent", "type": "array", - "additionalProperties": false, "items": { "description": "A specific rendition of the content of the news object. (Description changed in version 1.2 according to issue #17.)", "type": "object", @@ -526,7 +521,6 @@ "title": "Associations", "description": "An array of objects with content of news objects which are associated with this news object.", "type": "array", - "additionalProperties": false, "items": { "description": "One associated object where each object can use all properties in ninjs.", "type": "object", @@ -656,25 +650,28 @@ "title": "Language id", "description": "Identifier for the Rights Expression language used. nar:@langid", "format": "uri" - }, - "linkedrights": { - "title": "Linked rights", - "description": "A link from the current Item to Web resource with rights related information. nar:link", - "type": "string", - "format": "uri" - }, - "encodedrights": { - "title": "Encoded Rights", - "additionalProperties": false, - "type": "string", - "description": "Contains a rights expression as defined by a Rights Expression Language. nar:rightsExpressionXML or nar:rightsExpressionData" } }, "oneOf": [ { + "properties": { + "linkedrights": { + "title": "Linked rights", + "description": "A link from the current Item to Web resource with rights related information. nar:link", + "type": "string", + "format": "uri" + } + }, "required": ["linkedrights"] }, { + "properties": { + "encodedrights": { + "title": "Encoded Rights", + "type": "string", + "description": "Contains a rights expression as defined by a Rights Expression Language. nar:rightsExpressionXML or nar:rightsExpressionData" + } + }, "required": ["encodedrights"] } ] From 24eb48915009b217f95d86cdb899d93a858f7529 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 01:36:45 +0000 Subject: [PATCH 03/36] Enabled strict validation in anywork-*.json (#6123) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/api/json/catalog.json | 1 + src/schema-validation.jsonc | 2 - src/schemas/json/anywork-ac-1.0.json | 74 +++++++++++++++------------- src/schemas/json/anywork-ac-1.1.json | 1 + 4 files changed, 42 insertions(+), 36 deletions(-) diff --git a/src/api/json/catalog.json b/src/api/json/catalog.json index fbc68e61ce1..ef424fb47d6 100644 --- a/src/api/json/catalog.json +++ b/src/api/json/catalog.json @@ -187,6 +187,7 @@ "fileMatch": [".awc.yaml", ".awc.yml", ".awc.json", ".awc.jsonc", ".awc"], "url": "https://www.schemastore.org/anywork-ac-1.1.json", "versions": { + "1.1": "https://www.schemastore.org/anywork-ac-1.1.json", "1.0": "https://www.schemastore.org/anywork-ac-1.0.json" } }, diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index d85d62d37e4..745642dae39 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -3,8 +3,6 @@ "ajvNotStrictMode": [ "abc-clinical-demand-forecast-5.1.0.json", "abc-supply-plan-14.1.0.json", - "anywork-ac-1.0.json", - "anywork-ac-1.1.json", "appsettings.json", "asmdef.json", "aurora-1.0.json", diff --git a/src/schemas/json/anywork-ac-1.0.json b/src/schemas/json/anywork-ac-1.0.json index b82b73d7ab0..f45c9ac8f0d 100644 --- a/src/schemas/json/anywork-ac-1.0.json +++ b/src/schemas/json/anywork-ac-1.0.json @@ -21,43 +21,49 @@ "required": ["actions"], "properties": { "actions": { - "description": "Actions", - "type": ["string", "array"], - "default": "all", - "minItems": 1, - "uniqueItems": true, - "items": { - "description": "An action", - "type": ["string", "object"], - "oneOf": [ - { - "type": "string", - "enum": [ - "all", - "download", - "generate", - "correction", - "build", - "publish" - ] - }, - { - "title": "action", - "type": "object", - "required": ["target", "schema"], - "properties": { - "target": { - "$ref": "base.json#/definitions/path", - "description": "A path to repository including `node_modules` directory to install desired services" + "anyOf": [ + { + "type": "string" + }, + { + "type": "array", + "minItems": 1, + "uniqueItems": true, + "items": { + "description": "An action", + "oneOf": [ + { + "type": "string", + "enum": [ + "all", + "download", + "generate", + "correction", + "build", + "publish" + ] }, - "schema": { - "$ref": "#/definitions/schema" + { + "title": "action", + "type": "object", + "required": ["target", "schema"], + "properties": { + "target": { + "$ref": "base.json#/definitions/path", + "description": "A path to repository including `node_modules` directory to install desired services" + }, + "schema": { + "$ref": "#/definitions/schema" + } + }, + "additionalProperties": false } - }, - "additionalProperties": false + ] } - ] - } + } + ], + "description": "Actions", + "default": "all" }, "npm": { "title": "NPM specifications", diff --git a/src/schemas/json/anywork-ac-1.1.json b/src/schemas/json/anywork-ac-1.1.json index a48378c9c52..6597dbb6016 100644 --- a/src/schemas/json/anywork-ac-1.1.json +++ b/src/schemas/json/anywork-ac-1.1.json @@ -247,6 +247,7 @@ ], "definitions": { "version": { + "type": "string", "pattern": "^[\\^~]?(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$" }, "buildId": { From 08dfd4c48b9bdbe14800a469bedd6dfd50d7f281 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 01:38:05 +0000 Subject: [PATCH 04/36] Migrated npmpackagejsonlintrc.json to draft-07 (#6054) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/npmpackagejsonlintrc.json | 28 ++++++++++++++++------ 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 745642dae39..e0c549d9323 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -172,7 +172,6 @@ "netlify.json", "nightwatch.json", "now.json", - "npmpackagejsonlintrc.json", "nswag.json", "nuget-project-3.3.0.json", "nuget-project.json", diff --git a/src/schemas/json/npmpackagejsonlintrc.json b/src/schemas/json/npmpackagejsonlintrc.json index 333ea599962..617dfe583d1 100644 --- a/src/schemas/json/npmpackagejsonlintrc.json +++ b/src/schemas/json/npmpackagejsonlintrc.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/npmpackagejsonlintrc.json", "definitions": { "rule": { "oneOf": [ @@ -14,6 +15,7 @@ ] }, "requiredNode": { + "type": "object", "properties": { "require-author": { "$ref": "#/definitions/rule", @@ -134,6 +136,7 @@ } }, "dataType": { + "type": "object", "properties": { "bin-type": { "$ref": "#/definitions/rule", @@ -234,6 +237,7 @@ } }, "validValues": { + "type": "object", "properties": { "valid-values-author": { "$ref": "#/definitions/rule", @@ -262,6 +266,7 @@ } }, "dependencies": { + "type": "object", "properties": { "no-absolute-version-dependencies": { "$ref": "#/definitions/rule", @@ -358,6 +363,7 @@ } }, "format": { + "type": "object", "properties": { "description-format": { "$ref": "#/definitions/rule", @@ -374,6 +380,7 @@ } }, "packageJsonProperties": { + "type": "object", "properties": { "prefer-property-order": { "$ref": "#/definitions/rule", @@ -382,6 +389,7 @@ } }, "deprecated": { + "type": "object", "properties": { "prefer-no-engineStrict": { "$ref": "#/definitions/rule", @@ -390,14 +398,20 @@ } } }, - "id": "https://json.schemastore.org/npmpackagejsonlintrc.json", "properties": { "extends": { - "description": "Use the extends property to inherit rules from a shared configuration file/module.", - "type": ["string", "array"], - "items": { - "type": "string" - } + "anyOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ], + "description": "Use the extends property to inherit rules from a shared configuration file/module." }, "rules": { "description": "npm-package-json-lint rules are configurable. Use the rules object to specify what rules should be used and what severity level they should follow.", From 449644d6dd2f37dd872739afdf7b065be6d9bd34 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 01:38:37 +0000 Subject: [PATCH 05/36] Migrated stale.json to draft-07 (#6094) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/stale.json | 45 ++++++++++++++++++++++++++++++------- 2 files changed, 37 insertions(+), 9 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index e0c549d9323..86f6234468d 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -225,7 +225,6 @@ "size-limit.json", "solidaritySchema.json", "sprite.json", - "stale.json", "staticwebapp.config.json", "stylelintrc.json", "taurus.json", diff --git a/src/schemas/json/stale.json b/src/schemas/json/stale.json index 64a61c8349d..8d3944a2c14 100644 --- a/src/schemas/json/stale.json +++ b/src/schemas/json/stale.json @@ -1,9 +1,11 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/stale.json", "$comment": "https://probot.github.io/apps/stale/", "$ref": "#/definitions/configuration", "definitions": { "configuration": { + "type": "object", "properties": { "daysUntilStale": { "title": "Days Until Stale", @@ -12,9 +14,16 @@ "default": 60 }, "daysUntilClose": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "boolean" + } + ], "title": "Days Until Close", "description": "Number of days of inactivity before an Issue or Pull Request with the stale label is closed.", - "type": ["integer", "boolean"], "default": 7 }, "onlyLabels": { @@ -56,20 +65,41 @@ "default": "wontfix" }, "markComment": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ], "title": "Mark Comment", "description": "Comment to post when marking as stale.", - "type": ["string", "boolean"], "default": "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." }, "unmarkComment": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ], "title": "Unmark Comment", - "description": "Comment to post when removing the stale label.", - "type": ["string", "boolean"] + "description": "Comment to post when removing the stale label." }, "closeComment": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ], "title": "Closed Comment", - "description": "Comment to post when closing a stale issue or pull request.", - "type": ["string", "boolean"] + "description": "Comment to post when closing a stale issue or pull request." }, "limitPerRun": { "title": "Limit Per Run", @@ -88,7 +118,6 @@ } }, "description": "A GitHub app that closes abandoned issues and pull requests", - "id": "https://json.schemastore.org/stale.json", "properties": { "pulls": { "$ref": "#/definitions/configuration", From 5d48284b4d3080c6beb3156a3a90d7a8b31e85d2 Mon Sep 17 00:00:00 2001 From: Brent Westbrook <36778786+ntBre@users.noreply.github.com> Date: Thu, 27 Aug 2026 21:39:48 -0400 Subject: [PATCH 06/36] Update ruff's JSON schema (#6248) --- src/schemas/json/ruff.json | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/schemas/json/ruff.json b/src/schemas/json/ruff.json index b7dadf5dd8a..a38ef0962c5 100644 --- a/src/schemas/json/ruff.json +++ b/src/schemas/json/ruff.json @@ -381,7 +381,7 @@ ] }, "ignore": { - "description": "A list of rule codes or prefixes to ignore. Prefixes can specify exact\nrules (like `F841`), entire categories (like `F`), or anything in\nbetween.\n\nWhen breaking ties between enabled and disabled rules (via `select` and\n`ignore`, respectively), more specific prefixes override less\nspecific prefixes. `ignore` takes precedence over `select` if the same\nprefix appears in both.", + "description": "A list of rule codes or prefixes to ignore. Prefixes can specify exact\nrules (like `F841`), entire groups (like `F`), or anything in\nbetween.\n\nWhen breaking ties between enabled and disabled rules (via `select` and\n`ignore`, respectively), more specific prefixes override less\nspecific prefixes. `ignore` takes precedence over `select` if the same\nprefix appears in both.\n\nIn preview, categories like `correctness` and `suspicious` can be used\nin addition to rule codes and linter group prefixes.", "type": ["array", "null"], "deprecated": true, "items": { @@ -596,7 +596,7 @@ "type": ["boolean", "null"] }, "select": { - "description": "A list of rule codes or prefixes to enable. Prefixes can specify exact\nrules (like `F841`), entire categories (like `F`), or anything in\nbetween.\n\nWhen breaking ties between enabled and disabled rules (via `select` and\n`ignore`, respectively), more specific prefixes override less\nspecific prefixes. `ignore` takes precedence over `select` if the\nsame prefix appears in both.", + "description": "A list of rule codes or prefixes to enable. Prefixes can specify exact\nrules (like `F841`), entire groups (like `F`), or anything in\nbetween.\n\nWhen breaking ties between enabled and disabled rules (via `select` and\n`ignore`, respectively), more specific prefixes override less\nspecific prefixes. `ignore` takes precedence over `select` if the\nsame prefix appears in both.\n\nIn preview, categories like `correctness` and `suspicious` can be used\nin addition to rule codes and linter group prefixes.", "type": ["array", "null"], "deprecated": true, "items": { @@ -2018,7 +2018,7 @@ "type": ["boolean", "null"] }, "ignore": { - "description": "A list of rule codes or prefixes to ignore. Prefixes can specify exact\nrules (like `F841`), entire categories (like `F`), or anything in\nbetween.\n\nWhen breaking ties between enabled and disabled rules (via `select` and\n`ignore`, respectively), more specific prefixes override less\nspecific prefixes. `ignore` takes precedence over `select` if the same\nprefix appears in both.", + "description": "A list of rule codes or prefixes to ignore. Prefixes can specify exact\nrules (like `F841`), entire groups (like `F`), or anything in\nbetween.\n\nWhen breaking ties between enabled and disabled rules (via `select` and\n`ignore`, respectively), more specific prefixes override less\nspecific prefixes. `ignore` takes precedence over `select` if the same\nprefix appears in both.\n\nIn preview, categories like `correctness` and `suspicious` can be used\nin addition to rule codes and linter group prefixes.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" @@ -2161,7 +2161,7 @@ ] }, "select": { - "description": "A list of rule codes or prefixes to enable. Prefixes can specify exact\nrules (like `F841`), entire categories (like `F`), or anything in\nbetween.\n\nWhen breaking ties between enabled and disabled rules (via `select` and\n`ignore`, respectively), more specific prefixes override less\nspecific prefixes. `ignore` takes precedence over `select` if the\nsame prefix appears in both.", + "description": "A list of rule codes or prefixes to enable. Prefixes can specify exact\nrules (like `F841`), entire groups (like `F`), or anything in\nbetween.\n\nWhen breaking ties between enabled and disabled rules (via `select` and\n`ignore`, respectively), more specific prefixes override less\nspecific prefixes. `ignore` takes precedence over `select` if the\nsame prefix appears in both.\n\nIn preview, categories like `correctness` and `suspicious` can be used\nin addition to rule codes and linter group prefixes.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" @@ -4130,11 +4130,13 @@ "complex-assignment-in-stub", "complex-if-statement-in-stub", "complex-structure", + "complexity", "constant-imported-as-non-constant", "continue-in-finally", "continue-outside-loop", "convert-named-tuple-functional-to-class", "convert-typed-dict-functional-to-class", + "correctness", "create-subprocess-in-async-function", "custom-type-var-for-self", "dataclass-enum", @@ -4230,6 +4232,7 @@ "for-loop-writes", "format-in-get-text-func-call", "format-literals", + "formatting", "forward-annotation-syntax-error", "fromisoformat-replace-z", "function-call-in-dataclass-default-argument", @@ -4552,6 +4555,7 @@ "pass-statement-stub-body", "patch-version-comparison", "path-constructor-current-directory", + "pedantic", "pep484-style-positional-only-parameter", "percent-format-expected-mapping", "percent-format-expected-sequence", @@ -4562,6 +4566,7 @@ "percent-format-positional-count-mismatch", "percent-format-star-requires-sequence", "percent-format-unsupported-format-character", + "performance", "post-init-default", "potential-index-error", "print", @@ -4583,6 +4588,7 @@ "pytest-erroneous-use-fixtures-on-fixture", "pytest-extraneous-scope-function", "pytest-fail-without-message", + "pytest-fixture-autouse", "pytest-fixture-finalizer-callback", "pytest-fixture-incorrect-parentheses-style", "pytest-fixture-param-without-value", @@ -4649,6 +4655,7 @@ "replace-universal-newlines", "request-with-no-cert-validation", "request-without-timeout", + "restriction", "return-in-generator", "return-in-init", "return-in-try-except-finally", @@ -4661,6 +4668,7 @@ "runtime-cast-value", "runtime-import-in-type-checking-block", "runtime-string-union", + "security", "self-assigning-variable", "self-or-cls-assignment", "set-attr-with-constant", @@ -4706,6 +4714,7 @@ "string-or-bytes-too-long", "strip-with-multi-characters", "stub-body-multiple-statements", + "style", "subclass-builtin", "subprocess-popen-preexec-fn", "subprocess-popen-with-shell-equals-true", @@ -4719,6 +4728,7 @@ "superfluous-else-return", "suppressible-exception", "surrounding-whitespace", + "suspicious", "suspicious-eval-usage", "suspicious-ftp-lib-usage", "suspicious-ftplib-import", From 1983458b590798ef693d0e51d76af74693ef6fd9 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 01:40:44 +0000 Subject: [PATCH 07/36] Migrated es6importsorterrc.json to draft-07 (#5971) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schemas/json/es6importsorterrc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/schemas/json/es6importsorterrc.json b/src/schemas/json/es6importsorterrc.json index 66b22bbc653..2118a5d9b7c 100644 --- a/src/schemas/json/es6importsorterrc.json +++ b/src/schemas/json/es6importsorterrc.json @@ -1,7 +1,7 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/es6importsorterrc.json", "additionalProperties": false, - "id": "https://json.schemastore.org/es6importsorterrc.json", "properties": { "sourcePrefixes": { "description": "The prefixes of your source imports. Ex: import sth from '@data' => '@' can considered as a sourcePrefix", From 8cfea30d1c0a07914a6978ef9dde40d264ceec88 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 01:57:54 +0000 Subject: [PATCH 08/36] Migrated Azure Webjobs to draft-07 (#6072) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/settings.job.json | 4 +-- src/schemas/json/webjob-publish-settings.json | 25 ++++++++----------- src/schemas/json/webjobs-list.json | 4 +-- 4 files changed, 14 insertions(+), 20 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 86f6234468d..bf9447a938f 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -260,7 +260,6 @@ "vtesttree-schema-v2.4.0.json", "web-types.json", "webextension.json", - "webjob-publish-settings.json", "winget-pkgs-singleton-0.1.json", "workflows.json", "xs-app.json", diff --git a/src/schemas/json/settings.job.json b/src/schemas/json/settings.job.json index db612e43fbc..feb936c11ec 100644 --- a/src/schemas/json/settings.job.json +++ b/src/schemas/json/settings.job.json @@ -1,6 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "https://json.schemastore.org/settings.job.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/settings.job.json", "minProperties": 1, "properties": { "stopping_wait_time": { diff --git a/src/schemas/json/webjob-publish-settings.json b/src/schemas/json/webjob-publish-settings.json index e134cbb8364..1acca703a52 100644 --- a/src/schemas/json/webjob-publish-settings.json +++ b/src/schemas/json/webjob-publish-settings.json @@ -1,7 +1,9 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/webjob-publish-settings.json", "definitions": { "shared": { + "type": "object", "properties": { "webJobName": { "type": "string", @@ -29,33 +31,28 @@ } }, "scheduled": { + "$ref": "#/definitions/shared", + "type": "object", "required": [ "webJobName", "startTime", "endTime", "jobRecurrenceFrequency", - "interval" - ], - "allOf": [ - { - "$ref": "#/definitions/shared" - } + "interval", + "runMode" ], "properties": { "runMode": { "type": "string", - "enum": ["Scheduled"], + "const": "Scheduled", "description": "Determines the run mode of the Azure Webjob. \n\n Triggered: manually triggered \n Scheduled: runs on a specific schedule \n Continuous: runs all the time" } } }, "notScheduled": { + "$ref": "#/definitions/shared", + "type": "object", "required": ["runMode"], - "allOf": [ - { - "$ref": "#/definitions/shared" - } - ], "properties": { "runMode": { "type": "string", @@ -65,7 +62,6 @@ } } }, - "id": "https://json.schemastore.org/webjob-publish-settings.json", "oneOf": [ { "$ref": "#/definitions/scheduled" @@ -74,7 +70,6 @@ "$ref": "#/definitions/notScheduled" } ], - "required": ["runMode"], "title": "JSON schema for Azure Webjobs configuration files", "type": "object" } diff --git a/src/schemas/json/webjobs-list.json b/src/schemas/json/webjobs-list.json index 9f9fd930aba..890ff5d3d97 100644 --- a/src/schemas/json/webjobs-list.json +++ b/src/schemas/json/webjobs-list.json @@ -1,6 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "https://json.schemastore.org/webjobs-list.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/webjobs-list.json", "properties": { "WebJobs": { "type": "array", From 7de30f6372064f4dd148799681dff3b5b5d3e58f Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 01:59:54 +0000 Subject: [PATCH 09/36] Migrated Plagiarize config file schemas to draft-07 (#6063) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 2 -- src/schemas/json/plagiarize-0.0.json | 28 ++++++++++++++++++++++++---- src/schemas/json/plagiarize.json | 28 ++++++++++++++++++++++++---- 3 files changed, 48 insertions(+), 10 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index bf9447a938f..1463bf2fd83 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -186,10 +186,8 @@ "partial-eslint-plugins.json", "phrase.json", "phraseapp.json", - "plagiarize-0.0.json", "plagiarize-me-0.0.json", "plagiarize-me.json", - "plagiarize.json", "pocketmine-plugin.json", "pre-commit-config.json", "prettierrc-1.8.2.json", diff --git a/src/schemas/json/plagiarize-0.0.json b/src/schemas/json/plagiarize-0.0.json index 20f1feff75d..d2ceaf7c1ff 100644 --- a/src/schemas/json/plagiarize-0.0.json +++ b/src/schemas/json/plagiarize-0.0.json @@ -1,7 +1,7 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/plagiarize-0.0", "description": "plagiarize.yaml configuration schema", - "id": "https://json.schemastore.org/plagiarize-0.0", "properties": { "repo": { "required": ["url"], @@ -22,7 +22,17 @@ "type": "object", "description": "Strings to find in target project and be replaced with plagiarized project's values", "additionalProperties": { - "type": ["string", "integer", "boolean"] + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + }, + { + "type": "boolean" + } + ] }, "required": ["project"], "properties": { @@ -35,7 +45,17 @@ "type": "object", "description": "Variables available to be used for finding and replacing by variable name. For example `$var_name: hello` would replace string '$var_name' with 'hello' in target project", "additionalProperties": { - "type": ["string", "integer", "boolean"] + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + }, + { + "type": "boolean" + } + ] } } }, diff --git a/src/schemas/json/plagiarize.json b/src/schemas/json/plagiarize.json index e78aa2c9ec7..6ec28c7a5c3 100644 --- a/src/schemas/json/plagiarize.json +++ b/src/schemas/json/plagiarize.json @@ -1,7 +1,7 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/plagiarize", "description": "plagiarize.yaml configuration schema", - "id": "https://json.schemastore.org/plagiarize", "properties": { "repo": { "required": ["url"], @@ -22,7 +22,17 @@ "type": "object", "description": "Strings to find in target project and be replaced with plagiarized project's values", "additionalProperties": { - "type": ["string", "integer", "boolean"] + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + }, + { + "type": "boolean" + } + ] }, "required": ["project"], "properties": { @@ -35,7 +45,17 @@ "type": "object", "description": "Variables available to be used for finding and replacing by variable name. For example `$var_name: hello` would replace string '$var_name' with 'hello' in target project", "additionalProperties": { - "type": ["string", "integer", "boolean"] + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + }, + { + "type": "boolean" + } + ] } } }, From a3cf4d5316a7ef7a9b4d6cbdf3ced59e8f38b801 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:00:41 +0000 Subject: [PATCH 10/36] Migrated prettierrc*.json to draft-07 (#6068) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/prettierrc-1.8.2.json | 6 +- src/schemas/json/prettierrc-2.8.8.json | 92 ++++++++++++------------ src/schemas/json/prettierrc.json | 98 +++++++++++++------------- 4 files changed, 99 insertions(+), 98 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 1463bf2fd83..0ceae2cb0a3 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -190,7 +190,6 @@ "plagiarize-me.json", "pocketmine-plugin.json", "pre-commit-config.json", - "prettierrc-1.8.2.json", "prisma.json", "project-1.0.0-beta3.json", "project-1.0.0-beta4.json", diff --git a/src/schemas/json/prettierrc-1.8.2.json b/src/schemas/json/prettierrc-1.8.2.json index 64b6520baaa..3ce81a92386 100644 --- a/src/schemas/json/prettierrc-1.8.2.json +++ b/src/schemas/json/prettierrc-1.8.2.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/prettierrc-1.8.2.json", "allOf": [ { "$ref": "#/definitions/optionsDefinition" @@ -10,6 +11,7 @@ ], "definitions": { "optionsDefinition": { + "type": "object", "properties": { "arrowParens": { "default": "avoid", @@ -91,6 +93,7 @@ } }, "overridesDefinition": { + "type": "object", "properties": { "overrides": { "description": "Provide a list of patterns to override prettier configuration.", @@ -139,7 +142,6 @@ } } }, - "id": "https://json.schemastore.org/prettierrc-1.8.2.json", "title": "Schema for .prettierrc", "type": "object" } diff --git a/src/schemas/json/prettierrc-2.8.8.json b/src/schemas/json/prettierrc-2.8.8.json index 170396d00cf..9c032d0b80f 100644 --- a/src/schemas/json/prettierrc-2.8.8.json +++ b/src/schemas/json/prettierrc-2.8.8.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/prettierrc.json", "definitions": { "optionsDefinition": { "type": "object", @@ -9,11 +10,11 @@ "default": "always", "oneOf": [ { - "enum": ["always"], + "const": "always", "description": "Always include parens. Example: `(x) => x`" }, { - "enum": ["avoid"], + "const": "avoid", "description": "Omit parens when possible. Example: `x => x`" } ] @@ -43,11 +44,11 @@ "default": "auto", "oneOf": [ { - "enum": ["auto"], + "const": "auto", "description": "Format embedded code if Prettier can automatically identify it." }, { - "enum": ["off"], + "const": "off", "description": "Never automatically format embedded code." } ] @@ -57,19 +58,19 @@ "default": "lf", "oneOf": [ { - "enum": ["lf"], + "const": "lf", "description": "Line Feed only (\\n), common on Linux and macOS as well as inside git repos" }, { - "enum": ["crlf"], + "const": "crlf", "description": "Carriage Return + Line Feed characters (\\r\\n), common on Windows" }, { - "enum": ["cr"], + "const": "cr", "description": "Carriage Return character only (\\r), used very rarely" }, { - "enum": ["auto"], + "const": "auto", "description": "Maintain existing\n(mixed values within one file are normalised by looking at what's used after the first line)" } ] @@ -83,15 +84,15 @@ "default": "css", "oneOf": [ { - "enum": ["css"], + "const": "css", "description": "Respect the default value of CSS display property." }, { - "enum": ["strict"], + "const": "strict", "description": "Whitespaces are considered sensitive." }, { - "enum": ["ignore"], + "const": "ignore", "description": "Whitespaces are considered insensitive." } ] @@ -110,95 +111,95 @@ "description": "Which parser to use.", "anyOf": [ { - "enum": ["flow"], + "const": "flow", "description": "Flow" }, { - "enum": ["babel"], + "const": "babel", "description": "JavaScript" }, { - "enum": ["babel-flow"], + "const": "babel-flow", "description": "Flow" }, { - "enum": ["babel-ts"], + "const": "babel-ts", "description": "TypeScript" }, { - "enum": ["typescript"], + "const": "typescript", "description": "TypeScript" }, { - "enum": ["acorn"], + "const": "acorn", "description": "JavaScript" }, { - "enum": ["espree"], + "const": "espree", "description": "JavaScript" }, { - "enum": ["meriyah"], + "const": "meriyah", "description": "JavaScript" }, { - "enum": ["css"], + "const": "css", "description": "CSS" }, { - "enum": ["less"], + "const": "less", "description": "Less" }, { - "enum": ["scss"], + "const": "scss", "description": "SCSS" }, { - "enum": ["json"], + "const": "json", "description": "JSON" }, { - "enum": ["json5"], + "const": "json5", "description": "JSON5" }, { - "enum": ["json-stringify"], + "const": "json-stringify", "description": "JSON.stringify" }, { - "enum": ["graphql"], + "const": "graphql", "description": "GraphQL" }, { - "enum": ["markdown"], + "const": "markdown", "description": "Markdown" }, { - "enum": ["mdx"], + "const": "mdx", "description": "MDX" }, { - "enum": ["vue"], + "const": "vue", "description": "Vue" }, { - "enum": ["yaml"], + "const": "yaml", "description": "YAML" }, { - "enum": ["glimmer"], + "const": "glimmer", "description": "Ember / Handlebars" }, { - "enum": ["html"], + "const": "html", "description": "HTML" }, { - "enum": ["angular"], + "const": "angular", "description": "Angular" }, { - "enum": ["lwc"], + "const": "lwc", "description": "Lightning Web Components" }, { @@ -218,7 +219,7 @@ } }, { - "enum": [false], + "const": false, "description": "Disable plugin autoloading." } ] @@ -241,15 +242,15 @@ "default": "preserve", "oneOf": [ { - "enum": ["always"], + "const": "always", "description": "Wrap prose if it exceeds the print width." }, { - "enum": ["never"], + "const": "never", "description": "Do not wrap prose." }, { - "enum": ["preserve"], + "const": "preserve", "description": "Wrap prose as-is." } ] @@ -259,15 +260,15 @@ "default": "as-needed", "oneOf": [ { - "enum": ["as-needed"], + "const": "as-needed", "description": "Only add quotes around object properties where required." }, { - "enum": ["consistent"], + "const": "consistent", "description": "If at least one property in an object requires quotes, quote all properties." }, { - "enum": ["preserve"], + "const": "preserve", "description": "Respect the input use of quotes in object properties." } ] @@ -312,15 +313,15 @@ "default": "es5", "oneOf": [ { - "enum": ["es5"], + "const": "es5", "description": "Trailing commas where valid in ES5 (objects, arrays, etc.)" }, { - "enum": ["none"], + "const": "none", "description": "No trailing commas." }, { - "enum": ["all"], + "const": "all", "description": "Trailing commas wherever possible (including function arguments)." } ] @@ -387,7 +388,6 @@ } } }, - "id": "https://json.schemastore.org/prettierrc.json", "oneOf": [ { "type": "object", diff --git a/src/schemas/json/prettierrc.json b/src/schemas/json/prettierrc.json index d4b7b487596..fc67009ecc5 100644 --- a/src/schemas/json/prettierrc.json +++ b/src/schemas/json/prettierrc.json @@ -10,11 +10,11 @@ "default": "always", "oneOf": [ { - "enum": ["always"], + "const": "always", "description": "Always include parens. Example: `(x) => x`" }, { - "enum": ["avoid"], + "const": "avoid", "description": "Omit parens when possible. Example: `x => x`" } ] @@ -44,11 +44,11 @@ "default": "auto", "oneOf": [ { - "enum": ["auto"], + "const": "auto", "description": "Format embedded code if Prettier can automatically identify it." }, { - "enum": ["off"], + "const": "off", "description": "Never automatically format embedded code." } ] @@ -58,19 +58,19 @@ "default": "lf", "oneOf": [ { - "enum": ["lf"], + "const": "lf", "description": "Line Feed only (\\n), common on Linux and macOS as well as inside git repos" }, { - "enum": ["crlf"], + "const": "crlf", "description": "Carriage Return + Line Feed characters (\\r\\n), common on Windows" }, { - "enum": ["cr"], + "const": "cr", "description": "Carriage Return character only (\\r), used very rarely" }, { - "enum": ["auto"], + "const": "auto", "description": "Maintain existing\n(mixed values within one file are normalised by looking at what's used after the first line)" } ] @@ -80,11 +80,11 @@ "default": "end", "oneOf": [ { - "enum": ["start"], + "const": "start", "description": "Print operators at the start of new lines." }, { - "enum": ["end"], + "const": "end", "description": "Print operators at the end of previous lines." } ] @@ -103,15 +103,15 @@ "default": "css", "oneOf": [ { - "enum": ["css"], + "const": "css", "description": "Respect the default value of CSS display property." }, { - "enum": ["strict"], + "const": "strict", "description": "Whitespaces are considered sensitive." }, { - "enum": ["ignore"], + "const": "ignore", "description": "Whitespaces are considered insensitive." } ] @@ -131,11 +131,11 @@ "default": "preserve", "oneOf": [ { - "enum": ["preserve"], + "const": "preserve", "description": "Keep as multi-line, if there is a newline between the opening brace and first property." }, { - "enum": ["collapse"], + "const": "collapse", "description": "Fit to a single line when possible." } ] @@ -144,103 +144,103 @@ "description": "Which parser to use.", "anyOf": [ { - "enum": ["flow"], + "const": "flow", "description": "Flow" }, { - "enum": ["babel"], + "const": "babel", "description": "JavaScript" }, { - "enum": ["babel-flow"], + "const": "babel-flow", "description": "Flow" }, { - "enum": ["babel-ts"], + "const": "babel-ts", "description": "TypeScript" }, { - "enum": ["typescript"], + "const": "typescript", "description": "TypeScript" }, { - "enum": ["acorn"], + "const": "acorn", "description": "JavaScript" }, { - "enum": ["espree"], + "const": "espree", "description": "JavaScript" }, { - "enum": ["meriyah"], + "const": "meriyah", "description": "JavaScript" }, { - "enum": ["css"], + "const": "css", "description": "CSS" }, { - "enum": ["less"], + "const": "less", "description": "Less" }, { - "enum": ["scss"], + "const": "scss", "description": "SCSS" }, { - "enum": ["json"], + "const": "json", "description": "JSON" }, { - "enum": ["json5"], + "const": "json5", "description": "JSON5" }, { - "enum": ["jsonc"], + "const": "jsonc", "description": "JSON with Comments" }, { - "enum": ["json-stringify"], + "const": "json-stringify", "description": "JSON.stringify" }, { - "enum": ["graphql"], + "const": "graphql", "description": "GraphQL" }, { - "enum": ["markdown"], + "const": "markdown", "description": "Markdown" }, { - "enum": ["mdx"], + "const": "mdx", "description": "MDX" }, { - "enum": ["vue"], + "const": "vue", "description": "Vue" }, { - "enum": ["yaml"], + "const": "yaml", "description": "YAML" }, { - "enum": ["glimmer"], + "const": "glimmer", "description": "Ember / Handlebars" }, { - "enum": ["html"], + "const": "html", "description": "HTML" }, { - "enum": ["angular"], + "const": "angular", "description": "Angular" }, { - "enum": ["lwc"], + "const": "lwc", "description": "Lightning Web Components" }, { - "enum": ["mjml"], + "const": "mjml", "description": "MJML" }, { @@ -267,15 +267,15 @@ "default": "preserve", "oneOf": [ { - "enum": ["always"], + "const": "always", "description": "Wrap prose if it exceeds the print width." }, { - "enum": ["never"], + "const": "never", "description": "Do not wrap prose." }, { - "enum": ["preserve"], + "const": "preserve", "description": "Wrap prose as-is." } ] @@ -285,15 +285,15 @@ "default": "as-needed", "oneOf": [ { - "enum": ["as-needed"], + "const": "as-needed", "description": "Only add quotes around object properties where required." }, { - "enum": ["consistent"], + "const": "consistent", "description": "If at least one property in an object requires quotes, quote all properties." }, { - "enum": ["preserve"], + "const": "preserve", "description": "Respect the input use of quotes in object properties." } ] @@ -338,15 +338,15 @@ "default": "all", "oneOf": [ { - "enum": ["all"], + "const": "all", "description": "Trailing commas wherever possible (including function arguments)." }, { - "enum": ["es5"], + "const": "es5", "description": "Trailing commas where valid in ES5 (objects, arrays, etc.)" }, { - "enum": ["none"], + "const": "none", "description": "No trailing commas." } ] From 95251c446436a8373f113b05780b93b41dc471d8 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:03:42 +0000 Subject: [PATCH 11/36] Migrated openfin.json to draft-07 (#6059) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/openfin.json | 17 ++++++++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 0ceae2cb0a3..c78e9139979 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -175,7 +175,6 @@ "nswag.json", "nuget-project-3.3.0.json", "nuget-project.json", - "openfin.json", "opensrm.json", "opspec-io-0.1.7.json", "package.json", diff --git a/src/schemas/json/openfin.json b/src/schemas/json/openfin.json index a7f5afd3afc..78f600e2e3a 100644 --- a/src/schemas/json/openfin.json +++ b/src/schemas/json/openfin.json @@ -1,12 +1,13 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/openfin.json", "additionalProperties": false, - "id": "https://json.schemastore.org/openfin.json", "properties": { "appAssets": { "description": "Set this object to co-deploy native apps along with your app.", "type": "array", "items": { + "type": "object", "additionalProperties": false, "required": ["alias", "src", "version"], "properties": { @@ -42,6 +43,7 @@ "description": "You can access the Chromium development tools by navigating to the selected port, i.e.: http://localhost:9090." }, "dialogSettings": { + "type": "object", "description": "An optional object to customize the appearance of the RVM progress dialog.", "additionalProperties": false, "properties": { @@ -76,6 +78,7 @@ "description": "A string used as a licensing identifier for each customer/contract (RVM 2.7+). The OpenFin team will generate this for your production app." }, "runtime": { + "type": "object", "description": "Determines which runtime version the app will use.", "additionalProperties": false, "required": ["version"], @@ -107,6 +110,7 @@ } }, "shortcut": { + "type": "object", "description": "Settings for the app's desktop shortcut", "additionalProperties": false, "required": ["company", "icon", "name"], @@ -154,11 +158,13 @@ "description": "You can specify an image to display while the runtime is loading. It takes any image file (including semi-transparent PNGs)." }, "startup_app": { + "type": "object", "description": "Specifies the application level configuration.", "additionalProperties": false, "required": ["name", "url", "uuid"], "properties": { "accelerator": { + "type": "object", "description": "The name of this builder instance, which can be specified in the only/except property of a provisioner.", "additionalProperties": false, "properties": { @@ -214,6 +220,7 @@ "default": true }, "cornerRounding": { + "type": "object", "description": "This defines and applies rounded corners for the window.", "additionalProperties": false, "properties": { @@ -340,6 +347,7 @@ "type": "array", "description": "An array of scripts to download and run before other scripts in the page.", "items": { + "type": "object", "required": ["url"], "properties": { "url": { @@ -355,6 +363,7 @@ "default": true }, "resizeRegion": { + "type": "object", "description": "Define the attributes of the window's resize region.", "additionalProperties": false, "properties": { @@ -410,6 +419,7 @@ } }, "supportInformation": { + "type": "object", "description": "An optional object to customize error messages.", "additionalProperties": false, "required": ["company", "email", "product"], @@ -440,5 +450,6 @@ } }, "required": ["runtime", "shortcut", "startup_app"], - "title": "JSON schema for OpenFin application configuration files" + "title": "JSON schema for OpenFin application configuration files", + "type": "object" } From 8daf1ea174f0674ceabc450944f0a362b49edbba Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:05:17 +0000 Subject: [PATCH 12/36] Migrated local.settings.json to draft-07 (#6028) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 3 --- src/schemas/json/local.settings.json | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index c78e9139979..0d0b27bf731 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -1233,9 +1233,6 @@ "kestra-0.19.0.json": { "unknownKeywords": ["$deprecated", "$dynamic", "$metrics"] }, - "local.settings.json": { - "unknownKeywords": ["examples"] - }, "lsdlschema-0.7.json": { "unknownFormat": ["language", "identifier-properties", "identifier"] }, diff --git a/src/schemas/json/local.settings.json b/src/schemas/json/local.settings.json index 71f04d4dd9f..96dab064db7 100644 --- a/src/schemas/json/local.settings.json +++ b/src/schemas/json/local.settings.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/local.settings.json", "default": { "IsEncrypted": false, "Values": { @@ -7,7 +8,6 @@ "FUNCTIONS_WORKER_RUNTIME": "" } }, - "id": "https://json.schemastore.org/local.settings.json", "properties": { "IsEncrypted": { "type": "boolean", From 8cd5ed4220cbdf749bdba3aef8b9e66caddf67af Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:05:58 +0000 Subject: [PATCH 13/36] Migrated function.json to draft-07 (#5976) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/function.json | 181 ++++++++++++++++++++------------- 2 files changed, 108 insertions(+), 74 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 0d0b27bf731..1ac82f1147b 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -133,7 +133,6 @@ "foundryvtt-module-manifest.json", "foundryvtt-system-manifest.json", "foundryvtt-world-manifest.json", - "function.json", "gaspar-1.0.json", "gaspar-3.0.json", "github-action.json", diff --git a/src/schemas/json/function.json b/src/schemas/json/function.json index da563af6f1b..e48ccbe74a4 100644 --- a/src/schemas/json/function.json +++ b/src/schemas/json/function.json @@ -1,7 +1,9 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/function.json", "definitions": { "bindingBase": { + "type": "object", "properties": { "name": { "type": "string" @@ -21,6 +23,7 @@ "required": ["name", "type", "direction"] }, "dynamicBinding": { + "type": "object", "properties": { "type": { "not": { @@ -57,6 +60,7 @@ } }, "serviceBusBinding": { + "type": "object", "properties": { "queueName": { "type": "string", @@ -82,28 +86,31 @@ }, "oneOf": [ { + "type": "object", "properties": { "type": { - "enum": ["serviceBusTrigger"] + "const": "serviceBusTrigger" }, "direction": { - "enum": ["in"] + "const": "in" } } }, { + "type": "object", "properties": { "type": { - "enum": ["serviceBus"] + "const": "serviceBus" }, "direction": { - "enum": ["out"] + "const": "out" } } } ] }, "blobBinding": { + "type": "object", "properties": { "path": { "type": "string", @@ -116,35 +123,39 @@ }, "oneOf": [ { + "type": "object", "properties": { "type": { - "enum": ["blobTrigger"] + "const": "blobTrigger" }, "direction": { - "enum": ["in"] + "const": "in" } } }, { + "type": "object", "properties": { "type": { - "enum": ["blob"] + "const": "blob" } } } ] }, "manualTriggerBinding": { + "type": "object", "properties": { "type": { - "enum": ["manualTrigger"] + "const": "manualTrigger" }, "direction": { - "enum": ["in"] + "const": "in" } } }, "eventHubBinding": { + "type": "object", "properties": { "path": { "type": "string", @@ -157,12 +168,13 @@ }, "oneOf": [ { + "type": "object", "properties": { "type": { - "enum": ["eventHubTrigger"] + "const": "eventHubTrigger" }, "direction": { - "enum": ["in"] + "const": "in" }, "consumerGroup": { "type": "string", @@ -175,24 +187,26 @@ } }, { + "type": "object", "properties": { "type": { - "enum": ["eventHub"] + "const": "eventHub" }, "direction": { - "enum": ["out"] + "const": "out" } } } ] }, "timerTriggerBinding": { + "type": "object", "properties": { "type": { - "enum": ["timerTrigger"] + "const": "timerTrigger" }, "direction": { - "enum": ["in"] + "const": "in" }, "schedule": { "type": "string", @@ -209,6 +223,7 @@ } }, "queueBinding": { + "type": "object", "properties": { "queueName": { "type": "string", @@ -221,22 +236,24 @@ }, "oneOf": [ { + "type": "object", "properties": { "type": { - "enum": ["queueTrigger"] + "const": "queueTrigger" }, "direction": { - "enum": ["in"] + "const": "in" } } }, { + "type": "object", "properties": { "type": { - "enum": ["queue"] + "const": "queue" }, "direction": { - "enum": ["out"] + "const": "out" } } } @@ -246,12 +263,13 @@ "httpBinding": { "oneOf": [ { + "type": "object", "properties": { "type": { - "enum": ["httpTrigger"] + "const": "httpTrigger" }, "direction": { - "enum": ["in"] + "const": "in" }, "route": { "type": "string", @@ -269,40 +287,40 @@ }, "methods": { "type": "array", - "items": [ - { - "type": "string", - "enum": [ - "get", - "post", - "delete", - "head", - "patch", - "put", - "options", - "trace" - ] - } - ] + "items": { + "type": "string", + "enum": [ + "get", + "post", + "delete", + "head", + "patch", + "put", + "options", + "trace" + ] + } } } }, { + "type": "object", "properties": { "type": { - "enum": ["http"] + "const": "http" }, "direction": { - "enum": ["out"] + "const": "out" } } } ] }, "mobileBinding": { + "type": "object", "properties": { "type": { - "enum": ["mobileTable"] + "const": "mobileTable" }, "tableName": { "type": "string", @@ -319,9 +337,10 @@ }, "oneOf": [ { + "type": "object", "properties": { "direction": { - "enum": ["in"] + "const": "in" }, "id": { "type": "string", @@ -330,18 +349,20 @@ } }, { + "type": "object", "properties": { "direction": { - "enum": ["out"] + "const": "out" } } } ] }, "documentDBBinding": { + "type": "object", "properties": { "type": { - "enum": ["documentDB"] + "const": "documentDB" }, "connection": { "type": "string", @@ -358,9 +379,10 @@ }, "oneOf": [ { + "type": "object", "properties": { "direction": { - "enum": ["in"] + "const": "in" }, "id": { "type": "string", @@ -373,9 +395,10 @@ } }, { + "type": "object", "properties": { "direction": { - "enum": ["out"] + "const": "out" }, "createIfNotExists": { "type": "boolean", @@ -386,9 +409,10 @@ ] }, "tableBinding": { + "type": "object", "properties": { "type": { - "enum": ["table"] + "const": "table" }, "tableName": { "type": "string", @@ -409,9 +433,10 @@ }, "oneOf": [ { + "type": "object", "properties": { "direction": { - "enum": ["in"] + "const": "in" }, "take": { "type": "string", @@ -424,21 +449,23 @@ } }, { + "type": "object", "properties": { "direction": { - "enum": ["out"] + "const": "out" } } } ] }, "notificationHubBinding": { + "type": "object", "properties": { "type": { - "enum": ["notificationHub"] + "const": "notificationHub" }, "direction": { - "enum": ["out"] + "const": "out" }, "tagExpression": { "type": "string", @@ -460,12 +487,13 @@ } }, "twilioSmsBinding": { + "type": "object", "properties": { "type": { - "enum": ["twilioSms"] + "const": "twilioSms" }, "direction": { - "enum": ["out"] + "const": "out" }, "accountSid": { "type": "string", @@ -490,12 +518,13 @@ } }, "sendGridBinding": { + "type": "object", "properties": { "type": { - "enum": ["sendGrid"] + "const": "sendGrid" }, "direction": { - "enum": ["out"] + "const": "out" }, "apiKey": { "type": "string", @@ -520,6 +549,7 @@ } }, "sqlBinding": { + "type": "object", "properties": { "connectionStringSetting": { "type": "string", @@ -528,9 +558,10 @@ }, "oneOf": [ { + "type": "object", "properties": { "type": { - "enum": ["sqlTrigger"] + "const": "sqlTrigger" }, "tableName": { "type": "string", @@ -539,12 +570,13 @@ } }, { + "type": "object", "properties": { "type": { - "enum": ["sql"] + "const": "sql" }, "direction": { - "enum": ["in"] + "const": "in" }, "commandText": { "type": "string", @@ -561,6 +593,7 @@ } }, { + "type": "object", "properties": { "type": { "const": "sql" @@ -577,6 +610,7 @@ ] }, "kustoBinding": { + "type": "object", "properties": { "connection": { "type": "string", @@ -591,14 +625,15 @@ "description": "A managed service identity that has to be attached to use the bindings." }, "type": { - "enum": ["kusto"] + "const": "kusto" } }, "oneOf": [ { + "type": "object", "properties": { "direction": { - "enum": ["in"] + "const": "in" }, "kqlCommand": { "type": "string", @@ -611,9 +646,10 @@ } }, { + "type": "object", "properties": { "direction": { - "enum": ["out"] + "const": "out" }, "tableName": { "type": "string", @@ -632,6 +668,7 @@ ] }, "mySqlBinding": { + "type": "object", "properties": { "connectionStringSetting": { "type": "string", @@ -640,12 +677,13 @@ }, "oneOf": [ { + "type": "object", "properties": { "type": { - "enum": ["mysql"] + "const": "mysql" }, "direction": { - "enum": ["in"] + "const": "in" }, "commandText": { "type": "string", @@ -662,12 +700,13 @@ } }, { + "type": "object", "properties": { "type": { "const": "mysql" }, "direction": { - "enum": ["out"] + "const": "out" }, "commandText": { "type": "string", @@ -676,9 +715,10 @@ } }, { + "type": "object", "properties": { "type": { - "enum": ["mysqlTrigger"] + "const": "mysqlTrigger" }, "tableName": { "type": "string", @@ -689,7 +729,6 @@ ] } }, - "id": "https://json.schemastore.org/function.json", "properties": { "disabled": { "type": "boolean", @@ -732,7 +771,7 @@ "pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$" }, { - "enum": [null] + "const": null } ] }, @@ -744,7 +783,7 @@ "pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$" }, { - "enum": [null] + "const": null } ] }, @@ -756,7 +795,7 @@ "pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$" }, { - "enum": [null] + "const": null } ] } @@ -766,6 +805,7 @@ "type": "array", "description": "A list of function bindings.", "items": { + "$ref": "#/definitions/bindingBase", "oneOf": [ { "$ref": "#/definitions/dynamicBinding" @@ -822,11 +862,6 @@ } ] } - ], - "allOf": [ - { - "$ref": "#/definitions/bindingBase" - } ] } } From 0883ffc5520b4490d057cf372d1ce231035c011c Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:06:23 +0000 Subject: [PATCH 14/36] Migrated foxx-manifest.json to draft-07 (#5975) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 3 --- src/schemas/json/foxx-manifest.json | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 1ac82f1147b..1f78bff01a4 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -1163,9 +1163,6 @@ "externalSchema": ["foundryvtt-base-package-manifest.json"], "unknownKeywords": ["deprecationMessage"] }, - "foxx-manifest.json": { - "externalSchema": ["base-04.json"] - }, "gematik-test-patients.json": { "unknownKeywords": ["existingJavaType"] }, diff --git a/src/schemas/json/foxx-manifest.json b/src/schemas/json/foxx-manifest.json index b99f660efc2..a1a412b3e7f 100644 --- a/src/schemas/json/foxx-manifest.json +++ b/src/schemas/json/foxx-manifest.json @@ -1,7 +1,7 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/foxx-manifest.json", "description": "Schema for ArangoDB Foxx service manifests", - "id": "https://json.schemastore.org/foxx-manifest.json", "properties": { "configuration": { "type": "object", From 17ffef9835802901bccb45ec7f6eedeef54add42 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:06:56 +0000 Subject: [PATCH 15/36] Migrated dotnetcli.host.json to draft-07 (#5967) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/dotnetcli.host.json | 8 +++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 1f78bff01a4..d0af1fdfbad 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -60,7 +60,6 @@ "devinit.schema-5.0.json", "devinit.schema-6.0.json", "dofigen.json", - "dotnetcli.host.json", "drone.json", "drupal-recipe.json", "enonic-xp-admin-extension-8.0.0-B4.json", diff --git a/src/schemas/json/dotnetcli.host.json b/src/schemas/json/dotnetcli.host.json index 2da86d15549..3a77b5babed 100644 --- a/src/schemas/json/dotnetcli.host.json +++ b/src/schemas/json/dotnetcli.host.json @@ -1,7 +1,9 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/dotnetcli.host.json", "definitions": { "symbolInfo": { + "type": "object", "properties": { "isHidden": { "anyOf": [ @@ -9,7 +11,8 @@ "type": "boolean" }, { - "pattern": "^(true|false)$" + "type": "string", + "pattern": "^(?:true|false)$" } ] }, @@ -22,7 +25,6 @@ } } }, - "id": "https://json.schemastore.org/dotnetcli.host.json", "properties": { "symbolInfo": { "type": "object", From 8e4aaf018ccf6ead1b2a4d1fe63e2d1349d840b1 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:07:46 +0000 Subject: [PATCH 16/36] Migrated coffeelint.json to draft-07 (#5948) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/coffeelint.json | 272 +++++++++---------------------- 2 files changed, 78 insertions(+), 195 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index d0af1fdfbad..4e5f2bfa967 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -42,7 +42,6 @@ "codeclimate.json", "codeship-services.json", "codeship-steps.json", - "coffeelint.json", "commands.json", "commitlintrc.json", "compile-commands.json", diff --git a/src/schemas/json/coffeelint.json b/src/schemas/json/coffeelint.json index 382f2974eca..7d87c483bd3 100644 --- a/src/schemas/json/coffeelint.json +++ b/src/schemas/json/coffeelint.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/coffeelint.json", "additionalProperties": true, "definitions": { "base": { @@ -13,23 +14,16 @@ } } }, - "id": "https://json.schemastore.org/coffeelint.json", "properties": { "arrow_spacing": { + "$ref": "#/definitions/base", "description": "This rule checks to see that there is spacing before and after the arrow operator that declares a function. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "braces_spacing": { + "$ref": "#/definitions/base", "description": "This rule checks to see that there is the proper spacing inside curly braces. The spacing amount is specified by `spaces`. The spacing amount for empty objects is specified by `empty_object_spaces`. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ], + "type": "object", "properties": { "empty_object_spaces": { "type": "integer", @@ -42,28 +36,19 @@ } }, "camel_case_classes": { + "$ref": "#/definitions/base", "description": "This rule mandates that all class names are CamelCased. Camel casing class names is a generally accepted way of distinguishing constructor functions - which require the `new` prefix to behave properly - from plain old functions. [default level: error]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "coffeescript_error": { + "$ref": "#/definitions/base", "description": "[default level: error]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "colon_assignment_spacing": { + "$ref": "#/definitions/base", "description": "This rule checks to see that there is spacing before and after the colon in a colon assignment (i.e., classes, objects). [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ], + "type": "object", "properties": { "spacing": { "type": "object", @@ -81,12 +66,9 @@ } }, "cyclomatic_complexity": { + "$ref": "#/definitions/base", "description": "Examine the complexity of your application. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ], + "type": "object", "properties": { "value": { "type": "integer" @@ -94,44 +76,29 @@ } }, "duplicate_key": { + "$ref": "#/definitions/base", "description": "Prevents defining duplicate keys in object literals and classes. [default level: error]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "empty_constructor_needs_parens": { + "$ref": "#/definitions/base", "description": "Requires constructors with no parameters to include the parens. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "ensure_comprehensions": { + "$ref": "#/definitions/base", "description": "This rule makes sure that parentheses are around comprehensions. [default level: warn]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "eol_last": { + "$ref": "#/definitions/base", "description": "Checks that the file ends with a single newline. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "indentation": { + "$ref": "#/definitions/base", "description": "This rule imposes a standard number of spaces to be used for indentation. Since whitespace is significant in CoffeeScript, it's critical that a project chooses a standard indentation format and stays consistent. Other roads lead to darkness. [default level: error]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ], + "type": "object", "properties": { "value": { "type": "integer" @@ -139,12 +106,9 @@ } }, "line_endings": { + "$ref": "#/definitions/base", "description": "This rule ensures your project uses only windows or unix line endings. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ], + "type": "object", "properties": { "value": { "type": "string", @@ -153,12 +117,9 @@ } }, "max_line_length": { + "$ref": "#/definitions/base", "description": "This rule imposes a maximum line length on your code. [default level: error]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ], + "type": "object", "properties": { "value": { "type": "integer" @@ -169,20 +130,14 @@ } }, "missing_fat_arrows": { + "$ref": "#/definitions/base", "description": "Warns when you use `this` inside a function that wasn't defined with a fat arrow. This rule does not apply to methods defined in a class, since they have `this` bound to the class instance (or the class itself, for class methods). [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "newlines_after_classes": { + "$ref": "#/definitions/base", "description": "Checks the number of newlines between classes and other code. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ], + "type": "object", "properties": { "value": { "type": "integer" @@ -190,44 +145,29 @@ } }, "no_backticks": { + "$ref": "#/definitions/base", "description": "Backticks allow snippets of JavaScript to be embedded in CoffeeScript. While some folks consider backticks useful in a few niche circumstances, they should be avoided because so none of JavaScript's 'bad parts', like with and eval, sneak into CoffeeScript. [default level: error]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_debugger": { + "$ref": "#/definitions/base", "description": "This rule detects the `debugger` statement. [default level: warn]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_empty_functions": { + "$ref": "#/definitions/base", "description": "Disallows declaring empty functions. The goal of this rule is that unintentional empty callbacks can be detected. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_empty_param_list": { + "$ref": "#/definitions/base", "description": "This rule prohibits empty parameter lists in function definitions. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_implicit_braces": { + "$ref": "#/definitions/base", "description": "This rule prohibits implicit braces when declaring object literals. Implicit braces can make code more difficult to understand, especially when used in combination with optional parenthesis. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ], + "type": "object", "properties": { "strict": { "type": "boolean" @@ -235,94 +175,59 @@ } }, "no_implicit_parens": { + "$ref": "#/definitions/base", "description": "This rule prohibits implicit parens on function calls. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_interpolation_in_single_quotes": { + "$ref": "#/definitions/base", "description": "This rule prohibits string interpolation in a single quoted string. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_nested_string_interpolation": { + "$ref": "#/definitions/base", "description": "This rule warns about nested string interpolation, as it tends to make code harder to read and understand. [default level: warn]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_plusplus": { + "$ref": "#/definitions/base", "description": "This rule forbids the increment and decrement arithmetic operators. Some people believe the `++` and `--` to be cryptic and the cause of bugs due to misunderstandings of their precedence rules. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_private_function_fat_arrows": { + "$ref": "#/definitions/base", "description": "Warns when you use the fat arrow for a private function inside a class definition scope. It is not necessary and it does not do anything. [default level: warn]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_stand_alone_at": { + "$ref": "#/definitions/base", "description": "This rule checks that no stand alone `@` are in use, they are discouraged. [default level: ignore]", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_tabs": { + "$ref": "#/definitions/base", "description": "This rule forbids tabs in indentation. Enough said. [default level: error]", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_this": { + "$ref": "#/definitions/base", "description": "This rule prohibits `this`. Use `@` instead. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_throwing_strings": { + "$ref": "#/definitions/base", "description": "This rule forbids throwing string literals or interpolations. While JavaScript (and CoffeeScript by extension) allow any expression to be thrown, it is best to only throw `Error` objects, because they contain valuable debugging information like the stack trace. [default level: error]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_trailing_semicolons": { + "$ref": "#/definitions/base", "description": "This rule prohibits trailing semicolons, since they are needless cruft in CoffeeScript. [default level: error]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_trailing_whitespace": { + "$ref": "#/definitions/base", "description": "This rule forbids trailing whitespace in your code, since it is needless cruft. [default level: error]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ], + "type": "object", "properties": { "allowed_in_comments": { "type": "boolean" @@ -333,60 +238,39 @@ } }, "no_unnecessary_double_quotes": { + "$ref": "#/definitions/base", "description": "This rule prohibits double quotes unless string interpolation is used or the string contains single quotes. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "no_unnecessary_fat_arrows": { + "$ref": "#/definitions/base", "description": "Disallows defining functions with fat arrows when `this` is not used within the function. [default level: warn]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "non_empty_constructor_needs_parens": { + "$ref": "#/definitions/base", "description": "Requires constructors with parameters to include the parens. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "prefer_english_operator": { + "$ref": "#/definitions/base", "description": "This rule prohibits `&&`, `||`, `==`, `!=` and `!`. Use `and`, `or`, `is`, `isnt`, and `not` instead. `!!` (for converting to a boolean) is ignored. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "space_operators": { + "$ref": "#/definitions/base", "description": "This rule enforces that operators have space around them. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "spacing_after_comma": { + "$ref": "#/definitions/base", "description": "This rule checks to make sure you have a space after commas. [default level: ignore]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" }, "transform_messes_up_line_numbers": { + "$ref": "#/definitions/base", "description": "This rule detects when changes are made by transform function, and warns that line numbers are probably incorrect. [default level: warn]", - "allOf": [ - { - "$ref": "#/definitions/base" - } - ] + "type": "object" } }, "title": "JSON schema for coffeelint.json files", From 8f1ea95be7e6ce0e3ba4a105a43139be94fd1243 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:09:25 +0000 Subject: [PATCH 17/36] Migrated crowdin.json to draft-07 (#5957) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/crowdin.json | 8 ++++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 4e5f2bfa967..4f3470228fc 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -47,7 +47,6 @@ "compile-commands.json", "compilerconfig.json", "creatomic.json", - "crowdin.json", "dart-test.json", "datalogic-scan2deploy-android.json", "datalogic-scan2deploy-ce.json", diff --git a/src/schemas/json/crowdin.json b/src/schemas/json/crowdin.json index a60bdca32f2..5f216dbcaf2 100644 --- a/src/schemas/json/crowdin.json +++ b/src/schemas/json/crowdin.json @@ -1,8 +1,8 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/crowdin.json", "$comment": "https://support.crowdin.com/configuration-file/", "description": "Configuration for Crowdin, a crowd-translation platform.", - "id": "https://json.schemastore.org/crowdin.json", "properties": { "project_id": { "title": "Project ID", @@ -82,6 +82,7 @@ } }, "translation_replace": { + "type": "object", "title": "Translation Replace", "additionalProperties": { "type": "string" @@ -177,14 +178,17 @@ "type": "boolean" }, "languages_mapping": { + "type": "object", "title": "Language Mapping", "properties": { "two_letters_code": { + "type": "object", "additionalProperties": { "type": "string" } }, "android_code": { + "type": "object", "additionalProperties": { "type": "string" } From 57dbae09f67e308e1b83d2bedbe921f32fa32f22 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:10:53 +0000 Subject: [PATCH 18/36] Migrated compilerconfig.json to draft-07 (#5952) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/compilerconfig.json | 27 ++++++++++++++++++++------ src/schemas/json/compilerdefaults.json | 4 ++-- 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 4f3470228fc..2a481ab16fd 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -45,7 +45,6 @@ "commands.json", "commitlintrc.json", "compile-commands.json", - "compilerconfig.json", "creatomic.json", "dart-test.json", "datalogic-scan2deploy-android.json", diff --git a/src/schemas/json/compilerconfig.json b/src/schemas/json/compilerconfig.json index c8cd385f910..9bcf4793ce8 100644 --- a/src/schemas/json/compilerconfig.json +++ b/src/schemas/json/compilerconfig.json @@ -1,9 +1,12 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/compilerconfig.json", "definitions": { "lessOptions": { + "type": "object", "properties": { "inputFile": { + "type": "string", "pattern": "\\.less$" }, "options": { @@ -15,9 +18,11 @@ } }, "sassOptions": { + "type": "object", "properties": { "inputFile": { - "pattern": "\\.(scss|sass)$" + "type": "string", + "pattern": "\\.s[ac]ss$" }, "options": { "$ref": "compilerdefaults.json#/definitions/sass" @@ -28,8 +33,10 @@ } }, "stylusOptions": { + "type": "object", "properties": { "inputFile": { + "type": "string", "pattern": "\\.styl$" }, "options": { @@ -41,9 +48,11 @@ } }, "coffeeScriptOptions": { + "type": "object", "properties": { "inputFile": { - "pattern": "\\.coffee$|\\.litcoffee$" + "type": "string", + "pattern": "\\.(?:lit)?coffee$" }, "options": { "$ref": "compilerdefaults.json#/definitions/coffeeScript" @@ -54,8 +63,10 @@ } }, "icedCoffeeScriptOptions": { + "type": "object", "properties": { "inputFile": { + "type": "string", "pattern": "\\.iced$" }, "options": { @@ -67,9 +78,11 @@ } }, "babelOptions": { + "type": "object", "properties": { "inputFile": { - "pattern": "\\.(jsx|js|es6)$" + "type": "string", + "pattern": "\\.(?:jsx?|es6)$" }, "minify": { "$ref": "compilerdefaults.json#/definitions/javascriptMinify" @@ -77,9 +90,11 @@ } }, "handlebarsOptions": { + "type": "object", "properties": { "inputFile": { - "pattern": "\\.(hbs|handlebars)$" + "type": "string", + "pattern": "\\.(?:hbs|handlebars)$" }, "options": { "$ref": "compilerdefaults.json#/definitions/handlebars" @@ -90,6 +105,7 @@ } }, "config": { + "type": "object", "required": ["outputFile", "inputFile"], "properties": { "includeInProject": { @@ -148,7 +164,6 @@ } }, "description": "Schema for bundleconfig.json files", - "id": "https://json.schemastore.org/compilerconfig.json", "items": { "$ref": "#/definitions/config" }, diff --git a/src/schemas/json/compilerdefaults.json b/src/schemas/json/compilerdefaults.json index 1e571a36adb..91b8c4dfea3 100644 --- a/src/schemas/json/compilerdefaults.json +++ b/src/schemas/json/compilerdefaults.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/compilerdefaults.json", "definitions": { "less": { "description": "Specify options for the compiler.", @@ -269,7 +270,6 @@ } }, "description": "Schema for bundleconfig.json files", - "id": "https://json.schemastore.org/compilerdefaults.json", "properties": { "compilers": { "type": "object", From 7db0907d2bd44dd35c522e29b99c0ca9491b87b8 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:15:56 +0000 Subject: [PATCH 19/36] Migrated debugsettings.json to draft-07 (#5961) Co-authored-by: Edwin Kofler Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/debugsettings.json | 17 ++++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 2a481ab16fd..5117461e28d 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -49,7 +49,6 @@ "dart-test.json", "datalogic-scan2deploy-android.json", "datalogic-scan2deploy-ce.json", - "debugsettings.json", "devinit.schema-1.0.json", "devinit.schema-2.0.json", "devinit.schema-3.0.json", diff --git a/src/schemas/json/debugsettings.json b/src/schemas/json/debugsettings.json index 00e8bd1f703..ce3fd6eb668 100644 --- a/src/schemas/json/debugsettings.json +++ b/src/schemas/json/debugsettings.json @@ -1,14 +1,11 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/debugsettings.json", "definitions": { "profile": { + "$ref": "#/definitions/content", "type": "object", "required": ["name"], - "allOf": [ - { - "$ref": "#/definitions/content" - } - ], "anyOf": [ { "properties": { @@ -20,6 +17,9 @@ } }, "not": { + "properties": { + "commandName": {} + }, "required": ["commandName"] } }, @@ -33,12 +33,16 @@ } }, "not": { + "properties": { + "executablePath": {} + }, "required": ["executablePath"] } } ] }, "content": { + "type": "object", "properties": { "name": { "type": "string", @@ -78,7 +82,6 @@ } } }, - "id": "https://json.schemastore.org/debugsettings.json", "properties": { "profiles": { "type": "array", From ac29948d99f5113ee9259d1d523077c8552728d1 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:17:19 +0000 Subject: [PATCH 20/36] Migrated pattern.json to draft-07 (#6061) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/pattern.json | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 5117461e28d..24ddfb2b52b 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -175,7 +175,6 @@ "package.manifest-8.0.0.json", "package.manifest.json", "paper-plugin.json", - "pattern.json", "partial-eslint-plugins.json", "phrase.json", "phraseapp.json", diff --git a/src/schemas/json/pattern.json b/src/schemas/json/pattern.json index bcfc421d0da..21fd86ceddb 100644 --- a/src/schemas/json/pattern.json +++ b/src/schemas/json/pattern.json @@ -1,7 +1,7 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/pattern.json", "additionalProperties": false, - "id": "https://json.schemastore.org/pattern.json", "properties": { "id": { "description": "Unique id of this pattern", @@ -78,6 +78,7 @@ }, "demoPatterns": { "description": "Dependencies of the pattern used for demo purposes", + "type": "object", "minProperties": 1, "patternProperties": { "^.+$": { From b46ae83d52bee7a9d6283d632673a9ce66242c00 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:18:15 +0000 Subject: [PATCH 21/36] Migrated launchsettings.json to draft-07 (#6022) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/launchsettings.json | 45 +++++++++------------------- 2 files changed, 14 insertions(+), 32 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 24ddfb2b52b..a4517f39d3c 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -146,7 +146,6 @@ "kestra-0.18.3.json", "kestra-0.19.0.json", "label-commenter-config.json", - "launchsettings.json", "lerna.json", "libman.json", "lintstagedrc.schema.json", diff --git a/src/schemas/json/launchsettings.json b/src/schemas/json/launchsettings.json index 1b2372492b9..88b6ce29140 100644 --- a/src/schemas/json/launchsettings.json +++ b/src/schemas/json/launchsettings.json @@ -1,25 +1,19 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/launchsettings.json", "allowTrailingCommas": true, "definitions": { "profile": { + "$ref": "#/definitions/profileContent", "type": "object", - "allOf": [ - { - "$ref": "#/definitions/profileContent" - } - ], "required": ["commandName"] }, "iisSetting": { - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/iisSettingContent" - } - ] + "$ref": "#/definitions/iisSettingContent", + "type": "object" }, "iisSettingContent": { + "type": "object", "properties": { "windowsAuthentication": { "type": "boolean", @@ -32,26 +26,19 @@ "default": true }, "iisExpress": { + "$ref": "#/definitions/iisBindingContent", "type": "object", - "description": "Site settings to use with IISExpress profiles.", - "allOf": [ - { - "$ref": "#/definitions/iisBindingContent" - } - ] + "description": "Site settings to use with IISExpress profiles." }, "iis": { + "$ref": "#/definitions/iisBindingContent", "type": "object", - "description": "Site settings to use with IIS profiles.", - "allOf": [ - { - "$ref": "#/definitions/iisBindingContent" - } - ] + "description": "Site settings to use with IIS profiles." } } }, "iisBindingContent": { + "type": "object", "properties": { "applicationUrl": { "type": "string", @@ -69,6 +56,7 @@ } }, "profileContent": { + "type": "object", "properties": { "commandName": { "type": "string", @@ -219,7 +207,6 @@ } } }, - "id": "https://json.schemastore.org/launchsettings.json", "properties": { "profiles": { "type": "object", @@ -229,13 +216,9 @@ } }, "iisSettings": { + "$ref": "#/definitions/iisSettingContent", "type": "object", - "description": "IIS and IIS Express settings", - "allOf": [ - { - "$ref": "#/definitions/iisSettingContent" - } - ] + "description": "IIS and IIS Express settings" } }, "title": "JSON schema for the Visual Studio LaunchSettings.json file.", From 929201f410317aa336d247188fb9a261e95b9ca6 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:20:54 +0000 Subject: [PATCH 22/36] Migrated clasp.json to draft-07 (#5942) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 3 --- src/schemas/json/clasp.json | 14 ++++++++------ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index a4517f39d3c..e77b389e362 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -1039,9 +1039,6 @@ "clangd.json": { "externalSchema": ["base.json"] }, - "clasp.json": { - "externalSchema": ["base-04.json"] - }, "clib.json": { "externalSchema": ["base.json"] }, diff --git a/src/schemas/json/clasp.json b/src/schemas/json/clasp.json index 2db5062a61f..0e6573fcc8d 100644 --- a/src/schemas/json/clasp.json +++ b/src/schemas/json/clasp.json @@ -1,6 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "https://json.schemastore.org/clasp.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/clasp.json", "properties": { "scriptId": { "description": "An ID of the current Google Apps Script project\nhttps://github.com/google/clasp#scriptid-required", @@ -9,8 +9,9 @@ "maxLength": 57 }, "rootDir": { - "$ref": "base-04.json#/definitions/path", - "description": "A root directory path of the current Google Apps Script project\nhttps://github.com/google/clasp#rootdir-optional" + "type": "string", + "description": "A root directory path of the current Google Apps Script project\nhttps://github.com/google/clasp#rootdir-optional", + "minLength": 1 }, "projectId": { "description": "An ID for a Google Cloud Platform project linked to the current Google Apps Script project\nhttps://github.com/google/clasp#projectid-optional", @@ -29,9 +30,10 @@ "type": "array", "uniqueItems": true, "items": { - "$ref": "base-04.json#/definitions/path", + "type": "string", "title": "file", - "description": "A file\nhttps://github.com/google/clasp#filepushorder-optional" + "description": "A file\nhttps://github.com/google/clasp#filepushorder-optional", + "minLength": 1 } } }, From cc3c8b16c59837bc2ea83c2fc02b7bf52644ccfc Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:22:43 +0000 Subject: [PATCH 23/36] Migrated devinit.schema-*.json to draft-07 (#5964) Co-authored-by: Edwin Kofler Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 6 ------ src/schemas/json/devinit.schema-1.0.json | 5 +++-- src/schemas/json/devinit.schema-2.0.json | 14 +++++++++++--- src/schemas/json/devinit.schema-3.0.json | 5 +++-- src/schemas/json/devinit.schema-4.0.json | 5 +++-- src/schemas/json/devinit.schema-5.0.json | 5 +++-- src/schemas/json/devinit.schema-6.0.json | 5 +++-- 7 files changed, 26 insertions(+), 19 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index e77b389e362..f6a74ea9d73 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -49,12 +49,6 @@ "dart-test.json", "datalogic-scan2deploy-android.json", "datalogic-scan2deploy-ce.json", - "devinit.schema-1.0.json", - "devinit.schema-2.0.json", - "devinit.schema-3.0.json", - "devinit.schema-4.0.json", - "devinit.schema-5.0.json", - "devinit.schema-6.0.json", "dofigen.json", "drone.json", "drupal-recipe.json", diff --git a/src/schemas/json/devinit.schema-1.0.json b/src/schemas/json/devinit.schema-1.0.json index b8712270dcc..3970b1cc8b6 100644 --- a/src/schemas/json/devinit.schema-1.0.json +++ b/src/schemas/json/devinit.schema-1.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/devinit.schema-1.0.json", "additionalProperties": false, "definitions": { "runObject": { @@ -79,12 +80,12 @@ "additionalProperties": false } }, - "id": "https://json.schemastore.org/devinit.schema-1.0.json", "properties": { "$schema": { "type": "string" }, "run": { + "type": "array", "title": "The list of tools to run", "description": "'devinit.exe init' runs this list of tools sequentially. See also 'devinit.exe run'", "items": { diff --git a/src/schemas/json/devinit.schema-2.0.json b/src/schemas/json/devinit.schema-2.0.json index 4ac3401d87d..4a8e9f48dad 100644 --- a/src/schemas/json/devinit.schema-2.0.json +++ b/src/schemas/json/devinit.schema-2.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/devinit.schema-2.0.json", "additionalProperties": false, "definitions": { "runObject": { @@ -81,12 +82,12 @@ "additionalProperties": false } }, - "id": "https://json.schemastore.org/devinit.schema-2.0.json", "properties": { "$schema": { "type": "string" }, "run": { + "type": "array", "title": "The list of tools to run", "description": "'devinit.exe init' runs this list of tools sequentially. See also 'devinit.exe run'.", "items": { @@ -96,7 +97,14 @@ "comments": { "title": "Comments", "description": "Comments for this file. For documentation only; ignored by the tool.", - "type": ["null", "string"] + "anyOf": [ + { + "type": "null" + }, + { + "type": "string" + } + ] } }, "required": ["run"], diff --git a/src/schemas/json/devinit.schema-3.0.json b/src/schemas/json/devinit.schema-3.0.json index 5febeb7f909..a45ed85f5f2 100644 --- a/src/schemas/json/devinit.schema-3.0.json +++ b/src/schemas/json/devinit.schema-3.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/devinit.schema-3.0.json", "additionalProperties": false, "definitions": { "runObject": { @@ -82,12 +83,12 @@ "additionalProperties": false } }, - "id": "https://json.schemastore.org/devinit.schema-3.0.json", "properties": { "$schema": { "type": "string" }, "run": { + "type": "array", "title": "The list of tools to run", "description": "'devinit.exe init' runs this list of tools sequentially. See also 'devinit.exe run'.", "items": { diff --git a/src/schemas/json/devinit.schema-4.0.json b/src/schemas/json/devinit.schema-4.0.json index eb60db2bc2a..9bbfc98907a 100644 --- a/src/schemas/json/devinit.schema-4.0.json +++ b/src/schemas/json/devinit.schema-4.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/devinit.schema-4.0.json", "additionalProperties": false, "definitions": { "runObject": { @@ -84,12 +85,12 @@ "additionalProperties": false } }, - "id": "https://json.schemastore.org/devinit.schema-4.0.json", "properties": { "$schema": { "type": "string" }, "run": { + "type": "array", "title": "The list of tools to run", "description": "'devinit.exe init' runs this list of tools sequentially. See also 'devinit.exe run'.", "items": { diff --git a/src/schemas/json/devinit.schema-5.0.json b/src/schemas/json/devinit.schema-5.0.json index 5ac8f653cbe..4603ddd34b9 100644 --- a/src/schemas/json/devinit.schema-5.0.json +++ b/src/schemas/json/devinit.schema-5.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/devinit.schema-5.0.json", "additionalProperties": false, "definitions": { "runObject": { @@ -82,12 +83,12 @@ "additionalProperties": false } }, - "id": "https://json.schemastore.org/devinit.schema-5.0.json", "properties": { "$schema": { "type": "string" }, "run": { + "type": "array", "title": "The list of tools to run", "description": "'devinit.exe init' runs this list of tools sequentially. See also 'devinit.exe run'.", "items": { diff --git a/src/schemas/json/devinit.schema-6.0.json b/src/schemas/json/devinit.schema-6.0.json index 2738631a164..579ccb11f8a 100644 --- a/src/schemas/json/devinit.schema-6.0.json +++ b/src/schemas/json/devinit.schema-6.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/devinit.schema-6.0.json", "additionalProperties": false, "definitions": { "runObject": { @@ -84,12 +85,12 @@ "additionalProperties": false } }, - "id": "https://json.schemastore.org/devinit.schema-6.0.json", "properties": { "$schema": { "type": "string" }, "run": { + "type": "array", "title": "The list of tools to run", "description": "'devinit.exe init' runs this list of tools sequentially. See also 'devinit.exe run'.", "items": { From 2bb183f67e38f7d24d8462257b604de2ee065ca2 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:25:06 +0000 Subject: [PATCH 24/36] Migrated ubuntu-server-autoinstall.json to draft-07 (#6115) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - .../json/ubuntu-server-autoinstall.json | 69 ++++++++++++++----- 2 files changed, 52 insertions(+), 18 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index f6a74ea9d73..7085107da80 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -221,7 +221,6 @@ "typings.json", "typingsrc.json", "typo3.json", - "ubuntu-server-autoinstall.json", "utam-page-object.json", "utam-page-object-1.5.0.json", "utam-page-object-2.0.3.json", diff --git a/src/schemas/json/ubuntu-server-autoinstall.json b/src/schemas/json/ubuntu-server-autoinstall.json index db9274d91eb..a054b703507 100644 --- a/src/schemas/json/ubuntu-server-autoinstall.json +++ b/src/schemas/json/ubuntu-server-autoinstall.json @@ -1,7 +1,7 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/ubuntu-server-autoinstall.json", "description": "Settings file for Ubuntu Autoinstall", - "id": "https://json.schemastore.org/ubuntu-server-autoinstall.json", "properties": { "autoinstall": { "type": "object", @@ -14,10 +14,17 @@ "early-commands": { "type": "array", "items": { - "type": ["string", "array"], - "items": { - "type": "string" - } + "anyOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ] } }, "reporting": { @@ -36,10 +43,17 @@ "error-commands": { "type": "array", "items": { - "type": ["string", "array"], - "items": { - "type": "string" - } + "anyOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ] } }, "user-data": { @@ -79,7 +93,14 @@ "type": "string" }, "toggle": { - "type": ["string", "null"] + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] } }, "required": ["layout"], @@ -222,8 +243,15 @@ ] }, "proxy": { - "type": ["string", "null"], - "format": "uri" + "anyOf": [ + { + "type": "string", + "format": "uri" + }, + { + "type": "null" + } + ] }, "apt": { "type": "object", @@ -303,10 +331,17 @@ "late-commands": { "type": "array", "items": { - "type": ["string", "array"], - "items": { - "type": "string" - } + "anyOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ] } } }, From 3227450c319c7e6e26f0d4b5af775038a4ea462d Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:26:14 +0000 Subject: [PATCH 25/36] Migrated vsext.json to draft-07 (#6120) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/vsext.json | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 7085107da80..bea5492fa9f 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -229,7 +229,6 @@ "vector.json", "vega-lite.json", "vs-nesting.json", - "vsext.json", "vsix-manifestinjection.json", "vsix-publish.json", "vss-extension.json", diff --git a/src/schemas/json/vsext.json b/src/schemas/json/vsext.json index 1b567c4b26d..0eca293df7f 100644 --- a/src/schemas/json/vsext.json +++ b/src/schemas/json/vsext.json @@ -1,6 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "https://json.schemastore.org/vsext.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/vsext.json", "properties": { "id": { "description": "A unique identifier for the extension pack. This is to uniquely identify the extension pack and will not be shown to the user.", @@ -26,6 +26,7 @@ "description": "A list of extension objects.", "type": "array", "items": { + "type": "object", "required": ["vsixId"], "properties": { "name": { From e24d3594fbc4b8e2429d0ca07dc1f5eee44c8e08 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:28:10 +0000 Subject: [PATCH 26/36] Migrated commands.json to draft-07 (#5949) Co-authored-by: Edwin Kofler Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/commands.json | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index bea5492fa9f..d24e6f9fed5 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -42,7 +42,6 @@ "codeclimate.json", "codeship-services.json", "codeship-steps.json", - "commands.json", "commitlintrc.json", "compile-commands.json", "creatomic.json", diff --git a/src/schemas/json/commands.json b/src/schemas/json/commands.json index e6ce48469c1..db57535670d 100644 --- a/src/schemas/json/commands.json +++ b/src/schemas/json/commands.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/commands.json", "definitions": { "commands": { "type": "object", @@ -29,10 +30,10 @@ } }, "description": "Schema for bundleconfig.json files", - "id": "https://json.schemastore.org/commands.json", "properties": { "commands": { "description": "A list of commands.", + "type": "object", "additionalProperties": { "$ref": "#/definitions/commands" } From 5518b8716c63101dd11d302b59d9f2acccc468b4 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:31:20 +0000 Subject: [PATCH 27/36] Migrated grafana-dashboard-5.x.json to draft-07 (#5979) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 3 --- src/schemas/json/grafana-dashboard-5.x.json | 22 +++++++++++++++++---- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index d24e6f9fed5..0f5a6de8390 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -1158,9 +1158,6 @@ "externalSchema": ["gematik-test-patients.json"], "unknownKeywords": ["existingJavaType"] }, - "grafana-dashboard-5.x.json": { - "externalSchema": ["base-04.json"] - }, "grunt-clean-task.json": { "externalSchema": ["grunt-task.json"] }, diff --git a/src/schemas/json/grafana-dashboard-5.x.json b/src/schemas/json/grafana-dashboard-5.x.json index d08fe437166..8d01825ec5d 100644 --- a/src/schemas/json/grafana-dashboard-5.x.json +++ b/src/schemas/json/grafana-dashboard-5.x.json @@ -1,7 +1,7 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/grafana-dashboard-5.x.json", "description": "JSON Schema for Grafana 5.x Dashboards (https://grafana.com/docs/grafana/latest/reference/dashboard/#dashboard-json)", - "id": "https://json.schemastore.org/grafana-dashboard-5.x.json", "properties": { "meta": { "type": "object", @@ -16,7 +16,14 @@ "properties": { "id": { "description": "unique numeric identifier for the dashboard. (generated by the db)", - "type": ["number", "null"] + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ] }, "uid": { "description": "unique dashboard identifier that can be generated by anyone. string (8-40)", @@ -177,7 +184,14 @@ }, "datasource": { "description": "shows data source for the variables", - "type": ["string", "null"] + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] }, "includeAll": { "description": "whether all value option is available or not", From 1515ac50c2be7a69bceb19f3dc13341f311e25ee Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:32:02 +0000 Subject: [PATCH 28/36] Migrated nswag.json to draft-07 (#6055) Co-authored-by: Edwin Kofler Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/nswag.json | 19 ++++++------------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 0f5a6de8390..899ccb3d9b5 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -158,7 +158,6 @@ "netlify.json", "nightwatch.json", "now.json", - "nswag.json", "nuget-project-3.3.0.json", "nuget-project.json", "opensrm.json", diff --git a/src/schemas/json/nswag.json b/src/schemas/json/nswag.json index f354661d67c..221f34f9b5b 100644 --- a/src/schemas/json/nswag.json +++ b/src/schemas/json/nswag.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/nswag.json", "definitions": { "swaggerGenerator": { "type": "object", @@ -163,21 +164,13 @@ } }, "swaggerToCSharpClient": { + "$ref": "#/definitions/clientGenerator", "type": "object", - "allOf": [ - { - "$ref": "#/definitions/clientGenerator" - } - ], "properties": {} }, "swaggerToTypeScriptClient": { + "$ref": "#/definitions/clientGenerator", "type": "object", - "allOf": [ - { - "$ref": "#/definitions/clientGenerator" - } - ], "properties": { "template": { "type": "string", @@ -261,7 +254,6 @@ }, "swaggerToCSharpController": {} }, - "id": "https://json.schemastore.org/nswag.json", "properties": { "swaggerGenerator": { "$ref": "#/definitions/swaggerGenerator" @@ -269,5 +261,6 @@ "codeGenerators": { "$ref": "#/definitions/codeGenerators" } - } + }, + "type": "object" } From ffc516072aa26ffb07d522d96eed2995729c060f Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:34:38 +0000 Subject: [PATCH 29/36] Added strict validation to asmdef.json (#6187) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/asmdef.json | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 899ccb3d9b5..dae479e8d3d 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -4,7 +4,6 @@ "abc-clinical-demand-forecast-5.1.0.json", "abc-supply-plan-14.1.0.json", "appsettings.json", - "asmdef.json", "aurora-1.0.json", "aurora-1.1.json", "aurora-1.2.json", diff --git a/src/schemas/json/asmdef.json b/src/schemas/json/asmdef.json index b89ecb86fb6..3c092e930a8 100644 --- a/src/schemas/json/asmdef.json +++ b/src/schemas/json/asmdef.json @@ -5,9 +5,11 @@ { "properties": { "includePlatforms": { + "type": "array", "minItems": 1 }, "excludePlatforms": { + "type": "array", "maxItems": 0 } } @@ -15,9 +17,11 @@ { "properties": { "includePlatforms": { + "type": "array", "maxItems": 0 }, "excludePlatforms": { + "type": "array", "minItems": 1 } } @@ -25,9 +29,11 @@ { "properties": { "includePlatforms": { + "type": "array", "maxItems": 0 }, "excludePlatforms": { + "type": "array", "maxItems": 0 } } From 03ace7195a3d9ad039da490913e840d3c9532a18 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:36:39 +0000 Subject: [PATCH 30/36] Migrated azure-iot-*.json to draft-07 (#5927) Co-authored-by: Edwin Kofler Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 29 ++----------------- .../json/azure-iot-edge-deployment-1.0.json | 12 +++++++- .../json/azure-iot-edge-deployment-2.0.json | 16 ++++++++-- ...zure-iot-edge-deployment-template-1.0.json | 9 +++++- ...zure-iot-edge-deployment-template-2.0.json | 13 +++++++-- ...zure-iot-edge-deployment-template-3.0.json | 13 +++++++-- ...zure-iot-edge-deployment-template-4.0.json | 13 +++++++-- .../azure-iot-edgeagent-deployment-1.0.json | 12 +++++++- .../azure-iot-edgeagent-deployment-1.1.json | 16 ++++++++-- .../azure-iot-edgehub-deployment-1.1.json | 4 +-- .../azure-iot-edgehub-deployment-1.2.json | 4 +-- 11 files changed, 93 insertions(+), 48 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index dae479e8d3d..3ba0455431e 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -13,14 +13,6 @@ "azure-deviceupdate-update-manifest-5.json", "azure-deviceupdate-import-manifest-4.0.json", "azure-deviceupdate-import-manifest-5.0.json", - "azure-iot-edge-deployment-1.0.json", - "azure-iot-edge-deployment-2.0.json", - "azure-iot-edge-deployment-template-1.0.json", - "azure-iot-edge-deployment-template-2.0.json", - "azure-iot-edge-deployment-template-3.0.json", - "azure-iot-edge-deployment-template-4.0.json", - "azure-iot-edgeagent-deployment-1.0.json", - "azure-iot-edgeagent-deployment-1.1.json", "backportrc.json", "behat.json", "bitrise-step.json", @@ -954,38 +946,23 @@ "azure-deviceupdate-update-manifest-5.json": { "externalSchema": ["azure-deviceupdate-manifest-definitions-5.0.json"] }, - "azure-iot-edge-deployment-2.0.json": { - "unknownKeywords": ["examples", "contentMediaType"] - }, "azure-iot-edge-deployment-template-1.0.json": { "externalSchema": ["azure-iot-edge-deployment-1.0.json"] }, "azure-iot-edge-deployment-template-2.0.json": { - "externalSchema": ["azure-iot-edge-deployment-2.0.json"], - "unknownKeywords": ["examples", "contentMediaType"] + "externalSchema": ["azure-iot-edge-deployment-2.0.json"] }, "azure-iot-edge-deployment-template-3.0.json": { "externalSchema": [ "azure-iot-edgeagent-deployment-1.1.json", "azure-iot-edgehub-deployment-1.1.json" - ], - "unknownKeywords": ["examples", "contentMediaType"] + ] }, "azure-iot-edge-deployment-template-4.0.json": { "externalSchema": [ "azure-iot-edgeagent-deployment-1.1.json", "azure-iot-edgehub-deployment-1.2.json" - ], - "unknownKeywords": ["examples", "contentMediaType"] - }, - "azure-iot-edgeagent-deployment-1.1.json": { - "unknownKeywords": ["examples", "contentMediaType"] - }, - "azure-iot-edgehub-deployment-1.1.json": { - "unknownKeywords": ["examples", "contentMediaType"] - }, - "azure-iot-edgehub-deployment-1.2.json": { - "unknownKeywords": ["examples", "contentMediaType"] + ] }, "bitrise.json": { "externalSchema": ["bitrise-step.json"] diff --git a/src/schemas/json/azure-iot-edge-deployment-1.0.json b/src/schemas/json/azure-iot-edge-deployment-1.0.json index 403b32beb13..79648212376 100644 --- a/src/schemas/json/azure-iot-edge-deployment-1.0.json +++ b/src/schemas/json/azure-iot-edge-deployment-1.0.json @@ -32,7 +32,17 @@ "required": ["value"], "properties": { "value": { - "type": ["number", "string", "boolean"] + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "boolean" + } + ] } } } diff --git a/src/schemas/json/azure-iot-edge-deployment-2.0.json b/src/schemas/json/azure-iot-edge-deployment-2.0.json index d2bf97d36a7..e6612949068 100644 --- a/src/schemas/json/azure-iot-edge-deployment-2.0.json +++ b/src/schemas/json/azure-iot-edge-deployment-2.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/azure-iot-edge-deployment-2.0.json", "additionalProperties": false, "definitions": { "moduleType": { @@ -43,7 +44,17 @@ "required": ["value"], "properties": { "value": { - "type": ["number", "string", "boolean"] + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "boolean" + } + ] } }, "additionalProperties": false @@ -56,7 +67,6 @@ "contentMediaType": "application/json" } }, - "id": "https://json.schemastore.org/azure-iot-edge-deployment-2.0.json", "properties": { "modulesContent": { "type": "object", diff --git a/src/schemas/json/azure-iot-edge-deployment-template-1.0.json b/src/schemas/json/azure-iot-edge-deployment-template-1.0.json index 9881a1901ae..47d92515d16 100644 --- a/src/schemas/json/azure-iot-edge-deployment-template-1.0.json +++ b/src/schemas/json/azure-iot-edge-deployment-template-1.0.json @@ -28,7 +28,14 @@ "$ref": "azure-iot-edge-deployment-1.0.json#/definitions/env" }, "createOptions": { - "type": ["object", "string"], + "anyOf": [ + { + "type": "object" + }, + { + "type": "string" + } + ], "contentMediaType": "application/json" } }, diff --git a/src/schemas/json/azure-iot-edge-deployment-template-2.0.json b/src/schemas/json/azure-iot-edge-deployment-template-2.0.json index ebda2b39513..c9996c9cc9b 100644 --- a/src/schemas/json/azure-iot-edge-deployment-template-2.0.json +++ b/src/schemas/json/azure-iot-edge-deployment-template-2.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/azure-iot-edge-deployment-template-2.0.json", "additionalProperties": false, "definitions": { "moduleType": { @@ -37,11 +38,17 @@ "$ref": "azure-iot-edge-deployment-2.0.json#/definitions/env" }, "createOptions": { - "type": ["object", "string"], + "anyOf": [ + { + "type": "object" + }, + { + "type": "string" + } + ], "contentMediaType": "application/json" } }, - "id": "https://json.schemastore.org/azure-iot-edge-deployment-template-2.0.json", "properties": { "$schema": { "type": "string" diff --git a/src/schemas/json/azure-iot-edge-deployment-template-3.0.json b/src/schemas/json/azure-iot-edge-deployment-template-3.0.json index fb2b8c684aa..3bf4a28137b 100644 --- a/src/schemas/json/azure-iot-edge-deployment-template-3.0.json +++ b/src/schemas/json/azure-iot-edge-deployment-template-3.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/azure-iot-edge-deployment-template-3.0.json", "definitions": { "moduleSettings": { "type": "object", @@ -16,11 +17,17 @@ } }, "createOptions": { - "type": ["object", "string"], + "anyOf": [ + { + "type": "object" + }, + { + "type": "string" + } + ], "contentMediaType": "application/json" } }, - "id": "https://json.schemastore.org/azure-iot-edge-deployment-template-3.0.json", "properties": { "modulesContent": { "type": "object", diff --git a/src/schemas/json/azure-iot-edge-deployment-template-4.0.json b/src/schemas/json/azure-iot-edge-deployment-template-4.0.json index 763ce52eab5..81c1a5ff45e 100644 --- a/src/schemas/json/azure-iot-edge-deployment-template-4.0.json +++ b/src/schemas/json/azure-iot-edge-deployment-template-4.0.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/azure-iot-edge-deployment-template-4.0.json", "definitions": { "moduleSettings": { "type": "object", @@ -16,11 +17,17 @@ } }, "createOptions": { - "type": ["object", "string"], + "anyOf": [ + { + "type": "object" + }, + { + "type": "string" + } + ], "contentMediaType": "application/json" } }, - "id": "https://json.schemastore.org/azure-iot-edge-deployment-template-4.0.json", "properties": { "modulesContent": { "type": "object", diff --git a/src/schemas/json/azure-iot-edgeagent-deployment-1.0.json b/src/schemas/json/azure-iot-edgeagent-deployment-1.0.json index 684a673ab89..a59297c445d 100644 --- a/src/schemas/json/azure-iot-edgeagent-deployment-1.0.json +++ b/src/schemas/json/azure-iot-edgeagent-deployment-1.0.json @@ -33,7 +33,17 @@ "required": ["value"], "properties": { "value": { - "type": ["number", "string", "boolean"] + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "boolean" + } + ] } } } diff --git a/src/schemas/json/azure-iot-edgeagent-deployment-1.1.json b/src/schemas/json/azure-iot-edgeagent-deployment-1.1.json index 71e5d08db25..57cee78f55f 100644 --- a/src/schemas/json/azure-iot-edgeagent-deployment-1.1.json +++ b/src/schemas/json/azure-iot-edgeagent-deployment-1.1.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/azure-iot-edgeagent-deployment-1.1.json", "additionalProperties": false, "definitions": { "moduleType": { @@ -43,7 +44,17 @@ "required": ["value"], "properties": { "value": { - "type": ["number", "string", "boolean"] + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "boolean" + } + ] } }, "additionalProperties": false @@ -56,7 +67,6 @@ "contentMediaType": "application/json" } }, - "id": "https://json.schemastore.org/azure-iot-edgeagent-deployment-1.1.json", "properties": { "$edgeAgent": { "type": "object", diff --git a/src/schemas/json/azure-iot-edgehub-deployment-1.1.json b/src/schemas/json/azure-iot-edgehub-deployment-1.1.json index 79c0b54bf9c..36804acca06 100644 --- a/src/schemas/json/azure-iot-edgehub-deployment-1.1.json +++ b/src/schemas/json/azure-iot-edgehub-deployment-1.1.json @@ -1,7 +1,7 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/azure-iot-edgehub-deployment-1.1.json", "additionalProperties": false, - "id": "https://json.schemastore.org/azure-iot-edgehub-deployment-1.1.json", "properties": { "$edgeHub": { "type": "object", diff --git a/src/schemas/json/azure-iot-edgehub-deployment-1.2.json b/src/schemas/json/azure-iot-edgehub-deployment-1.2.json index 5ab347e246a..21ed6284f7d 100644 --- a/src/schemas/json/azure-iot-edgehub-deployment-1.2.json +++ b/src/schemas/json/azure-iot-edgehub-deployment-1.2.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/azure-iot-edgehub-deployment-1.2.json", "additionalProperties": false, "definitions": { "policy": { @@ -27,7 +28,6 @@ } } }, - "id": "https://json.schemastore.org/azure-iot-edgehub-deployment-1.2.json", "properties": { "$edgeHub": { "type": "object", From d448973fad205537991a5eaa27076cf98ac2ec96 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:37:51 +0000 Subject: [PATCH 31/36] Migrated testenvironments.json to draft-07 (#6104) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/testenvironments.json | 19 +++++++++++++------ 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 3ba0455431e..e42c0f7fbb9 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -201,7 +201,6 @@ "taurus.json", "template.json", "templatesources.json", - "testenvironments.json", "tmlanguage.json", "travis.json", "tsconfig.json", diff --git a/src/schemas/json/testenvironments.json b/src/schemas/json/testenvironments.json index 1ceb7c61958..fc0f3457799 100644 --- a/src/schemas/json/testenvironments.json +++ b/src/schemas/json/testenvironments.json @@ -1,7 +1,9 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/testenvironments.json", "definitions": { "config": { + "type": "object", "required": ["name", "type"], "oneOf": [ { @@ -30,13 +32,15 @@ } }, "docker": { + "type": "object", "properties": { "type": { - "enum": ["docker"] + "const": "docker" } }, "oneOf": [ { + "type": "object", "required": ["dockerImage"], "properties": { "dockerImage": { @@ -46,6 +50,7 @@ } }, { + "type": "object", "required": ["dockerFile"], "properties": { "dockerFile": { @@ -57,10 +62,11 @@ ] }, "wsl": { + "type": "object", "required": ["wslDistribution"], "properties": { "type": { - "enum": ["wsl"] + "const": "wsl" }, "wslDistribution": { "type": "string", @@ -69,10 +75,11 @@ } }, "ssh": { + "type": "object", "required": ["remoteUri"], "properties": { "type": { - "enum": ["ssh"] + "const": "ssh" }, "remoteUri": { "type": "string", @@ -81,10 +88,11 @@ } }, "remote": { + "type": "object", "required": ["remoteUri"], "properties": { "type": { - "enum": ["remote"] + "const": "remote" }, "remoteUri": { "type": "string", @@ -93,7 +101,6 @@ } } }, - "id": "https://json.schemastore.org/testenvironments.json", "properties": { "version": { "type": "string" From ad0343d03827c318682faf34bfb2863a8857538b Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:38:49 +0000 Subject: [PATCH 32/36] Fixed grammar in schema-validation.schema.json (#6088) Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/schema-validation.schema.json b/src/schema-validation.schema.json index b7e852a0295..ac5e5506208 100644 --- a/src/schema-validation.schema.json +++ b/src/schema-validation.schema.json @@ -85,7 +85,7 @@ "additionalProperties": false, "properties": { "unknownKeywords": { - "description": "List of keyword that the validator does not known. And must ignore", + "description": "List of keywords that the validator does not know and must ignore.", "type": "array", "uniqueItems": true, "items": { @@ -93,7 +93,7 @@ } }, "unknownFormat": { - "description": "List of format that the validator does not known. And must ignore", + "description": "List of formats that the validator does not know and must ignore.", "type": "array", "uniqueItems": true, "items": { From 71fd0d508e438b0b6bffd3f6da83743d05cdefe0 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:41:21 +0000 Subject: [PATCH 33/36] Migrated vsix-*.json to draft-07 (#6121) Co-authored-by: Edwin Kofler Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 2 -- src/schemas/json/vsix-manifestinjection.json | 7 +++++-- src/schemas/json/vsix-publish.json | 17 ++++++++++++----- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index e42c0f7fbb9..67fa8ec2c30 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -217,8 +217,6 @@ "vector.json", "vega-lite.json", "vs-nesting.json", - "vsix-manifestinjection.json", - "vsix-publish.json", "vss-extension.json", "vtesttree-schema-v1.0.0.json", "vtesttree-schema-v2.0.0.json", diff --git a/src/schemas/json/vsix-manifestinjection.json b/src/schemas/json/vsix-manifestinjection.json index 9f7f104374c..178b670f616 100644 --- a/src/schemas/json/vsix-manifestinjection.json +++ b/src/schemas/json/vsix-manifestinjection.json @@ -1,7 +1,9 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/vsix-manifestinjection.json", "definitions": { "fileAssociation": { + "type": "object", "required": ["extension", "progId"], "properties": { "contentType": { @@ -33,6 +35,7 @@ } }, "urlAssociation": { + "type": "object", "required": ["protocol", "progId", "defaultProgramRegistrationPath"], "properties": { "defaultProgramRegistrationPath": { @@ -61,6 +64,7 @@ } }, "progIds": { + "type": "object", "required": ["id"], "properties": { "allowSilentDefaultTakeOver": { @@ -129,7 +133,6 @@ } } }, - "id": "https://json.schemastore.org/vsix-manifestinjection.json", "properties": { "fileAssociations": { "description": "A list of file associations (protocol handlers).", diff --git a/src/schemas/json/vsix-publish.json b/src/schemas/json/vsix-publish.json index b3d34463a62..f79e8250cc1 100644 --- a/src/schemas/json/vsix-publish.json +++ b/src/schemas/json/vsix-publish.json @@ -1,6 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "https://json.schemastore.org/vsix-publish.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/vsix-publish.json", "properties": { "identity": { "type": "object", @@ -79,10 +79,17 @@ "pattern": "^[^\\s-]+$" }, "language": { - "type": ["string", "number"], + "anyOf": [ + { + "type": "string", + "pattern": "^(\\d{4})$|^([a-zA-Z]{2}(-[A-Za-z]{2})?)$|^neutral$" + }, + { + "type": "number" + } + ], "title": "Language", - "description": "The default language the extension applies to. Must be a CLR locale code or an lcid code.", - "pattern": "^(\\d{4})$|^([a-zA-Z]{2}(-[A-Za-z]{2})?)$|^neutral$" + "description": "The default language the extension applies to. Must be a CLR locale code or an lcid code." }, "tags": { "type": "array", From 5bdf76a351f0009c3d0c6168c7bb21bdac645245 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:42:44 +0000 Subject: [PATCH 34/36] Migrated templatesources.json to draft-07 (#6103) Co-authored-by: Edwin Kofler Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 1 - src/schemas/json/templatesources.json | 7 ++++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 67fa8ec2c30..62fc4406516 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -200,7 +200,6 @@ "stylelintrc.json", "taurus.json", "template.json", - "templatesources.json", "tmlanguage.json", "travis.json", "tsconfig.json", diff --git a/src/schemas/json/templatesources.json b/src/schemas/json/templatesources.json index c7961e1e931..c488e1463f9 100644 --- a/src/schemas/json/templatesources.json +++ b/src/schemas/json/templatesources.json @@ -1,6 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "https://json.schemastore.org/templatesources.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/templatesources.json", "properties": { "sources": { "description": "Includes information regarding all sources that have been added to SideWaffle.", @@ -34,5 +34,6 @@ "enum": ["Always", "OnceADay", "OnceAWeek", "OnceAMonth", "Never"] } }, - "title": "JSON schema for SideWaffle template sources" + "title": "JSON schema for SideWaffle template sources", + "type": "object" } From 66c06da925e416028a0adf8c68043fc17920d165 Mon Sep 17 00:00:00 2001 From: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:45:03 +0000 Subject: [PATCH 35/36] Migrated staticwebapp to draft-07 (#6095) Co-authored-by: Edwin Kofler Signed-off-by: Vessel9817 <151808241+Vessel9817@users.noreply.github.com> --- src/schema-validation.jsonc | 4 ---- src/schemas/json/staticwebapp.config.json | 5 +++-- src/schemas/json/swa-cli.config.json | 6 +++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/schema-validation.jsonc b/src/schema-validation.jsonc index 62fc4406516..4f1183bbf18 100644 --- a/src/schema-validation.jsonc +++ b/src/schema-validation.jsonc @@ -196,7 +196,6 @@ "size-limit.json", "solidaritySchema.json", "sprite.json", - "staticwebapp.config.json", "stylelintrc.json", "taurus.json", "template.json", @@ -1537,9 +1536,6 @@ "pep561-stub-name" ] }, - "staticwebapp.config.json": { - "unknownKeywords": ["examples"] - }, "template.json": { "unknownKeywords": ["deprecationMessage", "sources"] }, diff --git a/src/schemas/json/staticwebapp.config.json b/src/schemas/json/staticwebapp.config.json index e1e462a325f..d67cff498c1 100644 --- a/src/schemas/json/staticwebapp.config.json +++ b/src/schemas/json/staticwebapp.config.json @@ -1,5 +1,6 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://json.schemastore.org/staticwebapp.config.json", "additionalProperties": false, "default": { "navigationFallback": { @@ -347,6 +348,7 @@ "type": "object", "patternProperties": { ".*": { + "type": "object", "required": ["registration", "login"], "properties": { "enabled": { @@ -438,7 +440,6 @@ } }, "description": "Documentation: https://aka.ms/swa/config-schema", - "id": "https://json.schemastore.org/staticwebapp.config.json", "properties": { "$schema": { "type": "string", diff --git a/src/schemas/json/swa-cli.config.json b/src/schemas/json/swa-cli.config.json index 86024ab14bc..c4ec31030de 100644 --- a/src/schemas/json/swa-cli.config.json +++ b/src/schemas/json/swa-cli.config.json @@ -16,7 +16,7 @@ "type": "number" }, "apiPrefix": { - "enum": ["api"], + "const": "api", "type": "string" }, "appArtifactLocation": { @@ -68,11 +68,11 @@ "type": "string" }, "swaConfigFilename": { - "enum": ["staticwebapp.config.json"], + "const": "staticwebapp.config.json", "type": "string" }, "swaConfigFilenameLegacy": { - "enum": ["routes.json"], + "const": "routes.json", "type": "string" }, "swaConfigLocation": { From 3d4b306872d0c2764c5cba079ad0cb6ec305eb71 Mon Sep 17 00:00:00 2001 From: Mads Kristensen Date: Thu, 27 Aug 2026 20:53:39 -0700 Subject: [PATCH 36/36] Point GitHub Sponsors at the SchemaStore org (#6252) * Point FUNDING.yml at the SchemaStore org Sponsors listing * Point README sponsorship link at SchemaStore org * Point site Sponsor Me at org and drop unpaid premium logos --- .github/FUNDING.yml | 2 +- README.md | 2 +- src/json.cshtml | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 5499268b08b..e8b4484127d 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,2 @@ # These are supported funding model platforms -github: ['madskristensen', 'hyperupcall'] +github: [SchemaStore] diff --git a/README.md b/README.md index cce9253ad14..a92492c103b 100644 --- a/README.md +++ b/README.md @@ -60,4 +60,4 @@ And here’s the thing: for-profit organizations are among the biggest beneficia Your support would help cover hosting, maintenance, and development costs, ensuring this resource remains free and open for the entire community. It’s a small way to give back to something that likely saves you (and your team) time and effort every day. -You can find [sponsorship details on the site](https://github.com/sponsors/madskristensen), or feel free to reach out to me directly. +You can find [sponsorship details on the site](https://github.com/sponsors/SchemaStore), or feel free to reach out to me directly. diff --git a/src/json.cshtml b/src/json.cshtml index b6a1330ca85..1539bbc8e1e 100644 --- a/src/json.cshtml +++ b/src/json.cshtml @@ -104,8 +104,6 @@

Premium sponsors:

    -
  • Microsoft
  • -
  • JetBrains
  • Your business?
@@ -113,7 +111,7 @@ Do you build IDEs or editors that integrate with SchemaStore.org, or host a schema for your paying customers, consider a sponsorship.

-

SchemaStore.org sponsorships

+

SchemaStore.org sponsorships