Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 1 | { |
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": { | ||||
12 | "type": "string" | ||||
13 | }, | ||||
14 | "md5": { | ||||
15 | "type": "string" | ||||
16 | } | ||||
17 | }, | ||||
18 | "additionalProperties": false, | ||||
19 | "required": [ | ||||
20 | "version" | ||||
21 | ] | ||||
22 | } |