X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fmock%2Fpolicy-type1.json;fp=webapp-frontend%2Fsrc%2Fapp%2Fmock%2Fpolicy-type1.json;h=2777ca17ec1497eb8b4c044c787adee1fbd562e8;hb=e409ac955e6f0654f1721c69e1885bda23e1cf99;hp=0000000000000000000000000000000000000000;hpb=a3e5b2cc0eaf68e4f167cbf6cb39a6e154457678;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-frontend/src/app/mock/policy-type1.json b/webapp-frontend/src/app/mock/policy-type1.json new file mode 100644 index 0000000..2777ca1 --- /dev/null +++ b/webapp-frontend/src/app/mock/policy-type1.json @@ -0,0 +1,43 @@ +{ + "policy_schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "description": "Type 1 policy type", + "additionalProperties": false, + "title": "1", + "type": "object", + "properties": { + "qosObjectives": { + "additionalProperties": false, + "type": "object", + "properties": { + "priorityLevel": { + "type": "number" + } + }, + "required": [ + "priorityLevel" + ] + }, + "scope": { + "additionalProperties": false, + "type": "object", + "properties": { + "qosId": { + "type": "string" + }, + "ueId": { + "type": "string" + } + }, + "required": [ + "ueId", + "qosId" + ] + } + }, + "required": [ + "scope", + "qosObjectives" + ] + } +} \ No newline at end of file