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