bootstrap-vz/providers/virtualbox/manifest-schema.json
Anders Ingemann 71adb3d04e Manifest schema now validates partition definition
S3 partitioning is disallowed for now
2013-10-29 22:41:29 +01:00

17 lines
305 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"]
}
},
"required": ["backing"]
}
}
}