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": {
|
2013-12-15 17:25:57 +01:00
|
|
|
"bootstrapper": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"guest_additions": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2013-12-30 12:14:43 +01:00
|
|
|
"system": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"bootloader": {
|
|
|
|
"type": "string",
|
2014-01-18 21:40:09 +01:00
|
|
|
"enum": ["grub", "extlinux"]
|
2013-12-30 12:14:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
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": {
|
2014-01-19 01:02:29 +01:00
|
|
|
"type": { "enum": ["none", "msdos", "gpt"] }
|
2013-11-06 22:34:49 +01:00
|
|
|
}
|
2013-07-10 10:49:45 +02:00
|
|
|
}
|
|
|
|
},
|
2013-09-15 13:19:45 +02:00
|
|
|
"required": ["backing"]
|
2013-07-10 10:49:45 +02:00
|
|
|
}
|
2013-10-29 22:41:29 +01:00
|
|
|
}
|
2013-07-10 10:49:45 +02:00
|
|
|
}
|