blob: 3b37214aa02fee1828cd5e528aebea6157a7f7cd [file] [log] [blame]
BjornMagnussonXA72667f12020-04-24 09:20:18 +02001{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "title": "1",
4 "description": "Type 1 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 "qosObjective": {
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", "qosObjective"
39 ]
40 }