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

23 lines
464 B
JSON
Raw Normal View History

{
"$id": "block.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "block",
"type": "object",
"required": [ "name", "values" ],
"properties": {
"name": {
"type": "string",
"description": "Config block name",
"minLength": 2
},
"type": {
"type": "string",
"description": "Config type name.",
"enum": [ "generic", "exec" ]
},
"values": {
"type": "object"
}
}
}