blob: a40aa88befea2d9f0490943304e9ad293264cb3f [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 },
BjornMagnussonXAad047782020-06-08 15:54:11 +020023 "qosObjectives": {
BjornMagnussonXA72667f12020-04-24 09:20:18 +020024 "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": [
BjornMagnussonXAad047782020-06-08 15:54:11 +020038 "scope", "qosObjectives"
BjornMagnussonXA72667f12020-04-24 09:20:18 +020039 ]
40 }