Updated function test env with new tests and features
[nonrtric.git] / test / auto-test / testdata / OSC / 3.json
1 {
2   "$schema": "http://json-schema.org/draft-07/schema#",
3   "title": "OSC_Type3_1.0.0",
4   "description": "Type 3 policy type",
5   "type": "object",
6   "properties": {
7     "scope": {
8       "type": "object",
9       "properties": {
10         "groupId": {
11           "type": "string"
12         }
13       },
14       "additionalProperties": false,
15       "required": [
16         "groupId"
17       ]
18     },
19     "qosObjective": {
20       "type": "object",
21       "properties": {
22         "priorityLevel": {
23           "type": "number"
24         }
25       },
26       "additionalProperties": false,
27       "required": [
28         "priorityLevel"
29       ]
30     }
31   },
32   "additionalProperties": false,
33   "required": [
34     "scope", "qosObjective"
35   ]
36 }