19 lines
383 B
JSON
19 lines
383 B
JSON
{
|
|
"$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" }
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|