aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/install/database/schemaTemplates/questionnaire/image.ftl
blob: 7e32ca1383fb029f9b530cffecec6e0006a6dfa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
    "format": {
        "type": "string",
        "enum": [
            "aki","ami","ari","iso","qcow2","raw", "vdi","vhd","vmdk"
        ]
    },
    "version": {
        "type": "string",
        "minLength": 1
    },
    "md5": {
        "type": "string",
        "maxLength": 32
    }
},
    "additionalProperties": false,
    "required": [
     "version"
    ]
}