Move cell configurations to cell level
- Change schema
IssueID: OAM-375
Change-Id: I28e14fd4088effe42317ea85d333231e1dabf4c8
Signed-off-by: Martin Skorupski <martin.skorupski@highstreet-technologies.com>
diff --git a/code/network-generator/model/jsonSchema/configuration.schema.json b/code/network-generator/model/jsonSchema/configuration.schema.json
index 4fbe9b1..ee56992 100644
--- a/code/network-generator/model/jsonSchema/configuration.schema.json
+++ b/code/network-generator/model/jsonSchema/configuration.schema.json
@@ -218,9 +218,7 @@
"title": "o-ran-ru",
"type": "object",
"required": [
- "nr-cell-du-count",
- "cell-angle",
- "max-reach"
+ "nr-cell-du-count"
],
"properties": {
"nr-cell-du-count": {
@@ -230,6 +228,26 @@
1,
3
]
+ }
+ }
+ },
+ "nr-cell-du": {
+ "description": "Definition of the relation to 3GPP:NRCellDU children.",
+ "title": "nr-cell-du",
+ "type": "object",
+ "required": [
+ "sector-count",
+ "cell-angle",
+ "max-reach"
+ ],
+ "properties": {
+ "sector-count": {
+ "description": "Number of sectors managed by an 3GPP:NRCellDUs.",
+ "type": "integer",
+ "enum": [
+ 1,
+ 3
+ ]
},
"cell-angle": {
"description": "The area covered by an NRCellDU around the tower in grad.",
@@ -245,24 +263,6 @@
"maximum": 600
}
}
- },
- "nr-cell-du": {
- "description": "Definition of the relation to 3GPP:NRCellDU children.",
- "title": "nr-cell-du",
- "type": "object",
- "required": [
- "sector-count"
- ],
- "properties": {
- "sector-count": {
- "description": "Number of sectors managed by an 3GPP:NRCellDUs.",
- "type": "integer",
- "enum": [
- 1,
- 3
- ]
- }
- }
}
}
},