Merge "Added STD sim 2.0.0 tests"
[nonrtric.git] / policy-agent / src / test / resources / policy_types / demo-policy-schema-3.json
1 {
2   "$schema": "http://json-schema.org/draft-07/schema#",
3   "title": "ERIC_QoSNudging_0.2.0",
4   "description": "QoS nudging policy type with priorityLevel and ueId and qosId as scope",
5   "type": "object",
6   "properties": {
7     "scope": {
8       "type": "object",
9       "properties": {
10         "ueId": {"type": "string"},
11         "qosId": {"type": "string"}
12       },
13       "additionalProperties": false,
14       "required": ["ueId", "qosId"]
15     },
16     "qosObjectives": {
17       "type": "object",
18       "properties": {
19         "priorityLevel": {"type": "number"}
20       },
21       "additionalProperties": false,
22       "required": ["priorityLevel"]
23     }
24   },
25   "additionalProperties": false,
26   "required": ["scope", "qosObjectives"]
27 }