summaryrefslogtreecommitdiffstats
path: root/a1-policy-management/src/test/resources/policy_types/demo-policy-schema-3.json
blob: a73dd5904e322ce04b2c305b22a828ef11a002ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ERIC_QoSNudging_0.2.0",
  "description": "QoS nudging policy type with priorityLevel and ueId and qosId as scope",
  "type": "object",
  "properties": {
    "scope": {
      "type": "object",
      "properties": {
        "ueId": {"type": "string"},
        "qosId": {"type": "string"}
      },
      "additionalProperties": false,
      "required": ["ueId", "qosId"]
    },
    "qosObjectives": {
      "type": "object",
      "properties": {
        "priorityLevel": {"type": "number"}
      },
      "additionalProperties": false,
      "required": ["priorityLevel"]
    }
  },
  "additionalProperties": false,
  "required": ["scope", "qosObjectives"]
}