summaryrefslogtreecommitdiffstats
path: root/a1-policy-management/src/test/resources/policy_types/demo-policy-schema-2.json
blob: f3eb28fbedd45ef028e240e76a8436216a442623 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Example_QoETarget_1.0.0",
  "description": "Example QoE Target policy type",
  "type": "object",
  "properties": {
    "scope": {
      "type": "object",
      "properties": {
        "ueId": {
          "type": "string"
        },
        "sliceId": {
          "type": "string"
        },
        "qosId": {
          "type": "string"
        },
        "cellId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "ueId",
        "sliceId"
      ]
    },
    "statement": {
      "type": "object",
      "properties": {
        "qoeScore": {
          "type": "number"
        },
        "initialBuffering": {
          "type": "number"
        },
        "reBuffFreq": {
          "type": "number"
        },
        "stallRatio": {
          "type": "number"
        }
      },
      "minProperties": 1,
      "additionalProperties": false
    }
  }
}