bootstrap-vz/providers/kvm/manifest-schema.json
2014-02-27 23:02:58 +01:00

45 lines
845 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "KVM manifest",
"type": "object",
"properties": {
"system": {
"type": "object",
"properties": {
"virtio": {
"type": "array",
"items": {
"type": "string",
"enum": ["virtio",
"virtio_pci",
"virtio_balloon",
"virtio_blk",
"virtio_net",
"virtio_ring"]
},
"minItems": 1
},
"bootloader": {
"type": "string",
"enum": ["grub", "extlinux"]
}
}
},
"volume": {
"type": "object",
"properties": {
"backing": {
"type": "string",
"enum": ["raw"]
},
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["none", "msdos", "gpt"] }
}
}
},
"required": ["backing"]
}
}
}