blob: 88e75b08d468b3da940ee6845613fe6bd83acf7f [file] [log] [blame]
BjornMagnussonXA72667f12020-04-24 09:20:18 +02001{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "title": "2",
4 "description": "Type 2 policy type",
5 "type": "object",
6 "properties": {
7 "scope": {
8 "type": "object",
9 "properties": {
10 "sliceId": {
11 "type": "string"
12 }
13 },
14 "additionalProperties": false,
15 "required": [
16 "sliceId"
17 ]
18 },
19 "qoeObjectives": {
20 "type": "object",
21 "properties": {
22 "qoeScore": {
23 "type": "number"
24 }
25 },
26 "additionalProperties": false,
27 "required": [
28 "qoeScore"
29 ]
30 }
31 },
32 "additionalProperties": false,
33 "required": [
34 "scope", "qoeObjectives"
35 ]
36 }