blob: 7e32ca1383fb029f9b530cffecec6e0006a6dfa6 [file] [log] [blame]
Avi Zivb8e2faf2017-07-18 19:45:38 +03001{
2"$schema": "http://json-schema.org/draft-04/schema#",
3"type": "object",
4"properties": {
5 "format": {
6 "type": "string",
7 "enum": [
8 "aki","ami","ari","iso","qcow2","raw", "vdi","vhd","vmdk"
9 ]
10 },
11 "version": {
az2497644017c2017-08-10 17:49:40 +030012 "type": "string",
13 "minLength": 1
Avi Zivb8e2faf2017-07-18 19:45:38 +030014 },
15 "md5": {
shrikantawachar3f55e8e2018-07-14 00:18:09 +053016 "type": "string",
17 "maxLength": 32
Avi Zivb8e2faf2017-07-18 19:45:38 +030018 }
19},
20 "additionalProperties": false,
21 "required": [
22 "version"
23 ]
24}