bootstrap-vz/plugins/convert_image/manifest-schema.json

24 lines
408 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Convert image",
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"convert_image": {
"type": "object",
"properties": {
"format": {
"type": "string"
}
},
"required": ["format"]
}
},
"required": ["convert_image"]
}
},
"required": ["plugins"]
}