blob: 43b056b56dc90d5772de78832d2da8a6f5036b6a [file] [log] [blame]
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +01001{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "description": "STD QOS2 policy type",
4 "title": "STD_QOS2_0.1.0",
5 "type": "object",
6 "properties": {
7 "qosObjectives": {
8 "additionalProperties": false,
9 "type": "object",
10 "properties": {
11 "priorityLevel": {
12 "type": "number"
13 }
14 },
15 "required": [
16 "priorityLevel"
17 ]
18 },
19 "scope": {
20 "additionalProperties": false,
21 "type": "object",
22 "properties": {
23 "qosId": {
24 "type": "string"
25 },
26 "ueId": {
27 "type": "string"
28 }
29 },
30 "required": [
31 "ueId",
32 "qosId"
33 ]
34 }
35 }
36}