blob: 1423a23bff3e84ee0e112a73c2681c125a7ae057 [file] [log] [blame]
BjornMagnussonXA2791e082020-11-12 00:52:08 +01001{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "description": "STD QOS2 policy type",
4 "title": "STD_QOS2_0.1.0",
5 "type": "object",
6 "properties": {
7 "qosObjectives": {
8 "additionalProperties": false,
9 "type": "object",
10 "properties": {
11 "priorityLevel": {
12 "type": "number"
13 }
14 },
15 "required": [
16 "priorityLevel"
17 ]
18 },
19 "scope": {
20 "additionalProperties": false,
21 "type": "object",
22 "properties": {
23 "qosId": {
24 "type": "string"
25 }
26 },
27 "required": [
28 "qosId"
29 ]
30 }
31 }
32}