blob: 2bd0b4070517e2e64c2ce955b7c9d95c1376e5f9 [file] [log] [blame]
Avi Zivb8e2faf2017-07-18 19:45:38 +03001{
avigaffa00e935f2017-09-10 08:58:51 +03002"$schema": "http://json-schema.org/draft-04/schema#",
3"type": "object",
4"properties": {
5"model": {
6"type": "string",
7"maxLength": 30
8},
9"description": {
10"type": "string",
Avi Zivb8e2faf2017-07-18 19:45:38 +030011
avigaffa00e935f2017-09-10 08:58:51 +030012"maxLength": 300
13},
14"featureGroupId":{
15"type": "string",
16"enum": [<#if featureGroupIds??> <#list featureGroupIds as featureGroupId>
17"${featureGroupId}"<#sep>,</#list> </#if>
18]
19},
20"componentComputeAssociations": {
21"type": "array",
22"properties": {
23"vfcid": {
24"type": "string"
25},
26"computeFlavorid": {
27"type": "string"
28}
29},
30"additionalProperties": false
31}
Avi Zivb8e2faf2017-07-18 19:45:38 +030032
avigaffa00e935f2017-09-10 08:58:51 +030033},
34"additionalProperties": false,
35"required": [
36"model"
37]
Avi Zivb8e2faf2017-07-18 19:45:38 +030038}