blob: 3b37214aa02fee1828cd5e528aebea6157a7f7cd [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "1",
"description": "Type 1 policy type",
"type": "object",
"properties": {
"scope": {
"type": "object",
"properties": {
"ueId": {
"type": "string"
},
"qosId": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"ueId",
"qosId"
]
},
"qosObjective": {
"type": "object",
"properties": {
"priorityLevel": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"priorityLevel"
]
}
},
"additionalProperties": false,
"required": [
"scope", "qosObjective"
]
}