From 2b007e7962ab268ad69cc339ddf2ea222994e897 Mon Sep 17 00:00:00 2001 From: Jakob Guddas Date: Mon, 11 Dec 2023 15:53:52 +0100 Subject: [PATCH] Lessened $schema type strictness (#1718) * Lessened $schema type strictness * Lessened $schema type strictness --- category.schema.json | 2 +- icon.schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/category.schema.json b/category.schema.json index 57b07c225..7229f210e 100644 --- a/category.schema.json +++ b/category.schema.json @@ -16,7 +16,7 @@ "required": ["$schema", "icon", "title"], "properties": { "$schema": { - "const": "../category.schema.json" + "type": "string" }, "description": { "type": "string" diff --git a/icon.schema.json b/icon.schema.json index f9b48a9bc..2adb2c700 100644 --- a/icon.schema.json +++ b/icon.schema.json @@ -16,7 +16,7 @@ "required": ["$schema", "categories", "tags"], "properties": { "$schema": { - "const": "../icon.schema.json" + "type": "string" }, "aliases": { "type": "array",