bootstrap-vz/plugins/image_commands/manifest-schema.json
2013-12-14 23:18:39 +01:00

29 lines
564 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Image commands plugin manifest",
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"image_commands": {
"type": "object",
"properties": {
"commands": {
"type": "array",
"items": {
"type": "array",
"items": {"type": "string"},
"minItems": 1
},
"minItems": 1
}
},
"required": ["commands"]
}
},
"required": ["image_commands"]
}
},
"required": ["plugins"]
}