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-07-10 10:49:45 +02:00
|
|
|
}
|
2013-09-15 13:19:45 +02:00
|
|
|
// "filesystem": {
|
|
|
|
// "type": "string",
|
|
|
|
// "enum": ["ext2", "ext3", "ext4", "xfs"]
|
|
|
|
// }
|
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
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["volume"]
|
|
|
|
}
|