bootstrap-vz/providers/virtualbox/manifest-schema.json
2013-12-15 17:25:57 +01:00

31 lines
539 B
JSON

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