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

23 lines
432 B
JSON
Raw Normal View History

2013-07-10 10:49:45 +02:00
{
"$schema": "http://json-schema.org/draft-04/schema#",
2013-08-13 10:05:45 +02:00
"title": "VirtualBox manifest",
2013-07-10 10:49:45 +02:00
"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"]
}