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

18 lines
305 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", "vdi", "qcow2"]
2013-07-10 10:49:45 +02:00
}
},
"required": ["backing"]
2013-07-10 10:49:45 +02:00
}
}
2013-07-10 10:49:45 +02:00
}