bootstrap-vz/providers/virtualbox/manifest-schema.json
2013-11-06 22:34:49 +01:00

23 lines
425 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "VirtualBox manifest",
"type": "object",
"properties": {
"volume": {
"type": "object",
"properties": {
"backing": {
"type": "string",
"enum": ["raw", "vdi", "qcow2"]
},
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["none", "mbr"] }
}
}
},
"required": ["backing"]
}
}
}