blob: 3748b790496b2a8dec810e3e49572ac067aba48f [file] [log] [blame]
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +01001{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "description": "STD QOS policy type",
4 "title": "STD_QOS_0_2_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 }