blob: 8eba7f24515f910bc8f688f89f5d809ba5da9613 [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": {
16 "type": "string"
17 }
18},
19 "additionalProperties": false,
20 "required": [
21 "version"
22 ]
23}