Skip to content

Commit

Permalink
Add object-of-object based style property to block.json schema
Browse files Browse the repository at this point in the history
  • Loading branch information
adamziel committed Aug 1, 2022
1 parent 99902b6 commit 1119b4c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions schemas/json/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,10 @@
{
"type": "array",
"items": {
"type": "string"
"oneOf": [
{ "type": "string" },
{ "type": "object" }
]
}
}
]
Expand All @@ -478,7 +481,10 @@
{
"type": "array",
"items": {
"type": "string"
"oneOf": [
{ "type": "string" },
{ "type": "object" }
]
}
}
]
Expand Down

0 comments on commit 1119b4c

Please sign in to comment.