Merge "Make assertions of log messages better"
[nonrtric.git] / test / auto-test / testdata / OSC / 5.json
1 {
2   "$schema": "http://json-schema.org/draft-07/schema#",
3   "title": "OSC_Type5_1.0.0",
4   "description": "Type 5 policy type",
5   "type": "object",
6   "properties": {
7     "scope": {
8       "type": "object",
9       "properties": {
10         "sliceId": {
11           "type": "string"
12         },
13         "cellId": {
14           "type": "string"
15         }
16       },
17       "additionalProperties": false,
18       "required": [
19         "sliceId",
20         "cellId"
21       ]
22     },
23     "qosObjective": {
24       "type": "object",
25       "properties": {
26         "priorityLevel": {
27           "type": "number"
28         }
29       },
30       "additionalProperties": false,
31       "required": [
32         "priorityLevel"
33       ]
34     }
35   },
36   "additionalProperties": false,
37   "required": [
38     "scope", "qosObjective"
39   ]
40 }