mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-25 07:46:28 +00:00
30 lines
539 B
JSON
30 lines
539 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"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"required": ["commands"]
|
||
|
}
|
||
|
},
|
||
|
"required": ["image_commands"]
|
||
|
}
|
||
|
},
|
||
|
"required": ["plugins"]
|
||
|
}
|