2014-04-07 14:23:24 +02:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "Azure manifest",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2014-07-05 18:14:29 +02:00
|
|
|
"provider": {
|
2014-04-07 14:23:24 +02:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2014-04-09 17:32:37 +02:00
|
|
|
"waagent": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"conf": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"version": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["version"]
|
2014-04-07 14:23:24 +02:00
|
|
|
}
|
2014-07-05 18:14:29 +02:00
|
|
|
}
|
2014-04-09 17:32:37 +02:00
|
|
|
"required": ["waagent"]
|
2014-04-07 14:23:24 +02:00
|
|
|
},
|
2014-07-05 18:14:29 +02:00
|
|
|
"system": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"bootloader": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["grub", "extlinux"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
2014-04-07 14:23:24 +02:00
|
|
|
"volume": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"backing": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["raw"]
|
|
|
|
},
|
|
|
|
"partitions": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"type": { "enum": ["none", "msdos", "gpt"] }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["backing"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|