Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 1 | { |
avigaffa | 00e935f | 2017-09-10 08:58:51 +0300 | [diff] [blame] | 2 | "$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 Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 11 | |
avigaffa | 00e935f | 2017-09-10 08:58:51 +0300 | [diff] [blame] | 12 | "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 Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 32 | |
avigaffa | 00e935f | 2017-09-10 08:58:51 +0300 | [diff] [blame] | 33 | }, |
| 34 | "additionalProperties": false, |
| 35 | "required": [ |
| 36 | "model" |
| 37 | ] |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 38 | } |