Skip to content

Commit 1119b4c

Browse files
committed
Add object-of-object based style property to block.json schema
1 parent 99902b6 commit 1119b4c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

schemas/json/block.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,10 @@
464464
{
465465
"type": "array",
466466
"items": {
467-
"type": "string"
467+
"oneOf": [
468+
{ "type": "string" },
469+
{ "type": "object" }
470+
]
468471
}
469472
}
470473
]
@@ -478,7 +481,10 @@
478481
{
479482
"type": "array",
480483
"items": {
481-
"type": "string"
484+
"oneOf": [
485+
{ "type": "string" },
486+
{ "type": "object" }
487+
]
482488
}
483489
}
484490
]

0 commit comments

Comments
 (0)