Lessened $schema type strictness (#1718)

* Lessened $schema type strictness

* Lessened $schema type strictness
This commit is contained in:
Jakob Guddas
2023-12-11 15:53:52 +01:00
committed by GitHub
parent bb1e470f3a
commit 2b007e7962
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
"required": ["$schema", "icon", "title"], "required": ["$schema", "icon", "title"],
"properties": { "properties": {
"$schema": { "$schema": {
"const": "../category.schema.json" "type": "string"
}, },
"description": { "description": {
"type": "string" "type": "string"

View File

@@ -16,7 +16,7 @@
"required": ["$schema", "categories", "tags"], "required": ["$schema", "categories", "tags"],
"properties": { "properties": {
"$schema": { "$schema": {
"const": "../icon.schema.json" "type": "string"
}, },
"aliases": { "aliases": {
"type": "array", "type": "array",