Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add object-of-object based style property to block.json schema
  • Loading branch information
adamziel committed Aug 1, 2022
commit 1119b4c8910e8b91fbb415dc90953f042601d8c2
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