bootstrap-vz/providers/ec2/manifest-schema.json

26 lines
483 B
JSON
Raw Normal View History

{
2013-06-23 23:37:21 +02:00
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "EC2 manifest",
"type": "object",
"properties": {
"bootstrapdir": {
"type": "string"
},
"volume": {
"type": "object",
"properties": {
"backing": {
"type": "string",
"enum": ["ebs", "s3"]
2013-06-27 00:11:09 +02:00
},
"filesystem": {
"type": "string",
"enum": ["ext2", "ext3", "ext4", "xfs"]
}
},
2013-06-27 00:11:09 +02:00
"required": ["backing", "filesystem"]
}
},
"required": ["bootstrapdir", "volume"]
}