2013-07-01 20:13:07 +02:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "Prebootstrapped plugin manifest",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2013-11-21 17:27:25 +01:00
|
|
|
"volume": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"backing": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["raw", "ebs", "s3", "vdi"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["backing"]
|
|
|
|
},
|
2013-07-01 20:13:07 +02:00
|
|
|
"plugins": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"prebootstrapped": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"snapshot": {
|
|
|
|
"type": "string"
|
2013-07-14 23:16:37 +02:00
|
|
|
},
|
|
|
|
"image": {
|
|
|
|
"type": "string"
|
2013-07-01 20:13:07 +02:00
|
|
|
}
|
2013-07-14 23:16:37 +02:00
|
|
|
}
|
2013-07-01 20:13:07 +02:00
|
|
|
}
|
2013-12-10 22:30:32 +01:00
|
|
|
}
|
2013-07-01 20:13:07 +02:00
|
|
|
}
|
|
|
|
},
|
2013-12-10 22:30:32 +01:00
|
|
|
"required": ["volume"]
|
2013-07-01 20:13:07 +02:00
|
|
|
}
|