bootstrap-vz/providers/virtualbox/manifest-schema.json

22 lines
432 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OpenNebula manifest",
"type": "object",
"properties": {
"volume": {
"type": "object",
"properties": {
"backing": {
"type": "string",
"enum": ["raw", "qcow2"]
},
"filesystem": {
"type": "string",
"enum": ["ext2", "ext3", "ext4", "xfs"]
}
},
"required": ["backing", "filesystem"]
}
},
"required": ["volume"]
}