diff --git a/schemas/block.json b/schemas/block.json index f60157d..0384c07 100644 --- a/schemas/block.json +++ b/schemas/block.json @@ -227,13 +227,13 @@ "[a-zA-Z]": { "anyOf": [ { - "type": "string", + "type": ["string", "number", "boolean"], "minLength": 1 }, { "type": "array", "items": { - "type": "string", + "type": ["string", "number", "boolean"], "minLength": 1 } } diff --git a/schemas/component.json b/schemas/component.json index c71b052..d97653c 100644 --- a/schemas/component.json +++ b/schemas/component.json @@ -165,13 +165,13 @@ "[a-zA-Z]": { "anyOf": [ { - "type": "string", + "type": ["string", "number", "boolean"], "minLength": 1 }, { "type": "array", "items": { - "type": "string", + "type": ["string", "number", "boolean"], "minLength": 1 } }