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

19 lines
383 B
JSON
Raw Permalink Normal View History

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