blob: 3a012cd826536e4b93cd3c7b71ba6063875fa6f9 [file] [log] [blame]
{
"$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"
]
}