jx/internal/resource/schemas/config/document.schema.json

20 lines
388 B
JSON
Raw Permalink Normal View History

2024-09-27 00:51:07 +00:00
{
"$id": "document.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "document",
"type": "object",
"required": [ "configurations" ],
"properties": {
"configurations": {
"type": "array",
"description": "Configurations list",
"items": {
"oneOf": [
{ "$ref": "block.schema.json" }
]
}
}
}
}