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",
|
2013-09-15 16:59:56 +02:00
|
|
|
"enum": ["raw", "vdi", "qcow2"]
|
2013-11-06 22:34:49 +01:00
|
|
|
},
|
|
|
|
"partitions": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"type": { "enum": ["none", "mbr"] }
|
|
|
|
}
|
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
|
|
|
}
|