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

41 lines
682 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": {
"bootstrapper": {
"type": "object",
"properties": {
"guest_additions": {
"type": "string"
}
}
},
"system": {
"type": "object",
"properties": {
"bootloader": {
"type": "string",
"enum": ["grub"]
}
}
},
2013-07-10 10:49:45 +02:00
"volume": {
"type": "object",
"properties": {
"backing": {
"type": "string",
2013-12-28 14:02:28 +01:00
"enum": ["raw", "vdi", "vmdk"]
2013-11-06 22:34:49 +01:00
},
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["none", "mbr"] }
}
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
}