BjornMagnussonXA | 72667f1 | 2020-04-24 09:20:18 +0200 | [diff] [blame] | 1 | { |
| 2 | "$schema": "http://json-schema.org/draft-07/schema#", |
| 3 | "title": "2", |
| 4 | "description": "Type 2 policy type", |
| 5 | "type": "object", |
| 6 | "properties": { |
| 7 | "scope": { |
| 8 | "type": "object", |
| 9 | "properties": { |
| 10 | "sliceId": { |
| 11 | "type": "string" |
| 12 | } |
| 13 | }, |
| 14 | "additionalProperties": false, |
| 15 | "required": [ |
| 16 | "sliceId" |
| 17 | ] |
| 18 | }, |
| 19 | "qoeObjectives": { |
| 20 | "type": "object", |
| 21 | "properties": { |
| 22 | "qoeScore": { |
| 23 | "type": "number" |
| 24 | } |
| 25 | }, |
| 26 | "additionalProperties": false, |
| 27 | "required": [ |
| 28 | "qoeScore" |
| 29 | ] |
| 30 | } |
| 31 | }, |
| 32 | "additionalProperties": false, |
| 33 | "required": [ |
| 34 | "scope", "qoeObjectives" |
| 35 | ] |
| 36 | } |