bootstrap-vz/bootstrapvz/providers/gce/manifest-schema.json

44 lines
705 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "GCE manifest",
"type": "object",
"properties": {
"image": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"gcs_destination": {
"type": "string"
},
"gce_project": {
"type": "string"
}
}
},
"system": {
"type": "object",
"properties": {
"bootloader": {
"type": "string",
"enum": ["grub", "extlinux"]
}
}
},
"volume": {
"type": "object",
"properties": {
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["msdos"] }
}
}
},
"required": ["partitions"]
}
}
}