blob: fd5290fcd7010c95108c9bb7ce1716ae5655e5e2 [file] [log] [blame]
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001{
2 "name": "pt5",
3 "description": "pt5 policy type",
4 "policy_type_id": 5,
5 "create_schema": {
6 "$schema": "http://json-schema.org/draft-07/schema#",
7 "title": "OSC_Type5_1.0.0",
8 "description": "Type 5 policy type",
9 "type": "object",
10 "properties": {
11 "scope": {
12 "type": "object",
13 "properties": {
14 "sliceId": {
15 "type": "string"
16 },
17 "cellId": {
18 "type": "string"
19 }
20 },
21 "additionalProperties": false,
22 "required": [
23 "sliceId",
24 "cellId"
25 ]
26 },
BjornMagnussonXAad047782020-06-08 15:54:11 +020027 "qosObjectives": {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020028 "type": "object",
29 "properties": {
30 "priorityLevel": {
31 "type": "number"
32 }
33 },
34 "additionalProperties": false,
35 "required": [
36 "priorityLevel"
37 ]
38 }
39 },
40 "additionalProperties": false,
41 "required": [
BjornMagnussonXAad047782020-06-08 15:54:11 +020042 "scope", "qosObjectives"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020043 ]
44 }
45}