{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "100", | |
"description": "Quality of Service policy type", | |
"type": "object", | |
"properties": { | |
"scope": { | |
"type": "object", | |
"properties": { | |
"ueId": { | |
"type": "string" | |
}, | |
"qosId": { | |
"type": "string" | |
} | |
}, | |
"additionalProperties": false, | |
"required": [ | |
"ueId", | |
"qosId" | |
] | |
}, | |
"qosObjectives": { | |
"type": "object", | |
"properties": { | |
"priorityLevel": { | |
"type": "number" | |
} | |
}, | |
"additionalProperties": false, | |
"required": [ | |
"priorityLevel" | |
] | |
} | |
}, | |
"additionalProperties": false, | |
"required": [ | |
"scope", "qosObjectives" | |
] | |
} |