BjornMagnussonXA | ad04778 | 2020-06-08 15:54:11 +0200 | [diff] [blame^] | 1 | { |
| 2 | "$schema": "http://json-schema.org/draft-07/schema#", |
| 3 | "title": "OSC_Type1_1.0.0", |
| 4 | "description": "Quality of Service policy type", |
| 5 | "type": "object", |
| 6 | "properties": { |
| 7 | "scope": { |
| 8 | "type": "object", |
| 9 | "properties": { |
| 10 | "ueId": { |
| 11 | "type": "string" |
| 12 | }, |
| 13 | "qosId": { |
| 14 | "type": "string" |
| 15 | } |
| 16 | }, |
| 17 | "additionalProperties": false, |
| 18 | "required": [ |
| 19 | "ueId", |
| 20 | "qosId" |
| 21 | ] |
| 22 | }, |
| 23 | "qosObjectives": { |
| 24 | "type": "object", |
| 25 | "properties": { |
| 26 | "priorityLevel": { |
| 27 | "type": "number" |
| 28 | } |
| 29 | }, |
| 30 | "additionalProperties": false, |
| 31 | "required": [ |
| 32 | "priorityLevel" |
| 33 | ] |
| 34 | } |
| 35 | }, |
| 36 | "additionalProperties": false, |
| 37 | "required": [ |
| 38 | "scope", "qosObjectives" |
| 39 | ] |
| 40 | } |