Non-RT RIC Dashboard
[nonrtric.git] / dashboard / webapp-backend / src / test / resources / anr-policy-schema.json
1 {
2   "$schema": "http://json-schema.org/draft-07/schema#",
3   "title": "ANR",
4   "description": "ANR Neighbour Cell Relation Policy",
5   "type": "object",
6   "properties": {
7     "servingCellNrcgi": {
8       "type": "string",
9       "description": "Serving Cell Identifier (NR CGI)"
10     },
11     "neighborCellNrpci": {
12       "type": "string",
13       "description": "Neighbor Cell Identifier (NR PCI)"
14     },
15     "neighborCellNrcgi": {
16       "type": "string",
17       "description": "Neighbor Cell Identifier (NR CGI)"
18     },
19     "flagNoHo": {
20       "type": "boolean",
21       "description": "Flag for HANDOVER NOT ALLOWED"
22     },
23     "flagNoXn": {
24       "type": "boolean",
25       "description": "Flag for Xn CONNECTION NOT ALLOWED"
26     },
27     "flagNoRemove": {
28       "type": "boolean",
29       "description": "Flag for DELETION NOT ALLOWED"
30     }
31   },
32   "required": [
33     "servingCellNrcgi",
34     "neighborCellNrpci",
35     "neighborCellNrcgi",
36     "flagNoHo",
37     "flagNoXn",
38     "flagNoRemove"
39   ]
40 }