Sort out some dependencies
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / mock / policy-type1.json
1 {
2   "policy_schema": {
3     "$schema": "http://json-schema.org/draft-07/schema#",
4     "description": "Type 1 policy type",
5     "additionalProperties": false,
6     "title": "1",
7     "type": "object",
8     "properties": {
9       "qosObjectives": {
10         "additionalProperties": false,
11         "type": "object",
12         "properties": {
13           "priorityLevel": {
14             "type": "number"
15           }
16         },
17         "required": [
18           "priorityLevel"
19         ]
20       },
21       "scope": {
22         "additionalProperties": false,
23         "type": "object",
24         "properties": {
25           "qosId": {
26             "type": "string"
27           },
28           "ueId": {
29             "type": "string"
30           }
31         },
32         "required": [
33           "ueId",
34           "qosId"
35         ]
36       }
37     },
38     "required": [
39       "scope",
40       "qosObjectives"
41     ]
42   }
43 }