mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
31 lines
539 B
JSON
31 lines
539 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "VirtualBox manifest",
|
|
"type": "object",
|
|
"properties": {
|
|
"bootstrapper": {
|
|
"type": "object",
|
|
"properties": {
|
|
"guest_additions": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"volume": {
|
|
"type": "object",
|
|
"properties": {
|
|
"backing": {
|
|
"type": "string",
|
|
"enum": ["raw", "vdi"]
|
|
},
|
|
"partitions": {
|
|
"type": "object",
|
|
"properties": {
|
|
"type": { "enum": ["none", "mbr"] }
|
|
}
|
|
}
|
|
},
|
|
"required": ["backing"]
|
|
}
|
|
}
|
|
}
|