From 2f872974b1e066cbbd2ce9805077650458ae7d1f Mon Sep 17 00:00:00 2001 From: Nikita Katkov Date: Mon, 15 Jul 2024 21:12:53 +0200 Subject: [PATCH] [json] IJPL-157229 Fix incorrect type validation for 2020 jscon schema Unspecified type in the meta schema lead to treating many of the instance fields as either an object, or a boolean (as it is specified in the #meta schema node). GitOrigin-RevId: 4c1441f161039eef502fd7e3e4b64295d04cffc3 --- json/resources/jsonSchema/vocabularies/2020-12/validation.json | 1 + 1 file changed, 1 insertion(+) diff --git a/json/resources/jsonSchema/vocabularies/2020-12/validation.json b/json/resources/jsonSchema/vocabularies/2020-12/validation.json index 5e30322a554e..5234826743cc 100644 --- a/json/resources/jsonSchema/vocabularies/2020-12/validation.json +++ b/json/resources/jsonSchema/vocabularies/2020-12/validation.json @@ -75,6 +75,7 @@ "default": 0 }, "simpleTypes": { + "type": "string", "enum": [ "array", "boolean",