First version of NonRT RIC Controlpanel
[portal/nonrtric-controlpanel.git] / webapp-backend / src / test / resources / demo-policy-schema-1.json
1 {
2   "$schema": "http://json-schema.org/draft-07/schema#",
3   "title": "Example_QoSTarget_1.0.0",
4   "description": "Example QoS Target policy type",
5   "type": "object",
6   "properties": {
7     "scope": {
8       "type": "object",
9       "properties": {
10         "qosId": {
11           "type": "string"
12         },
13         "cellId": {
14           "type": "string"
15         }
16       },
17       "additionalProperties": false,
18       "required": [
19         "qosId"
20       ]
21     },
22     "statement": {
23       "type": "object",
24       "properties": {
25         "gfbr": {
26           "type": "number"
27         },
28         "mfbr": {
29           "type": "number"
30         },
31         "priorityLevel": {
32           "type": "number"
33         },
34         "pdb": {
35           "type": "number"
36         }
37       },
38       "minProperties": 1,
39       "additionalProperties": false
40     }
41   }
42 }