bootstrap-vz/providers/virtualbox/manifest-schema.json
Anders Ingemann 0fac91c2fc Remove qcow2 from supported vbox volume backings
We can handle raw and vdi images right now
2013-11-22 09:03:48 +01:00

23 lines
416 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"]
},
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["none", "mbr"] }
}
}
},
"required": ["backing"]
}
}
}