From 328351ca8fdd33fa18e7787582c70586c88b23d2 Mon Sep 17 00:00:00 2001 From: Martin Skorupski Date: Wed, 22 Nov 2023 07:51:01 +0100 Subject: [PATCH] Implement handover areas in kml - update schema Issue-ID: OAM-393 Change-Id: Ic71acb1af477fcfad50418ea7c1d509e62666e78 Signed-off-by: Martin Skorupski --- .../network_generation/model/jsonSchema/configuration.schema.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/network-generator/network_generation/model/jsonSchema/configuration.schema.json b/code/network-generator/network_generation/model/jsonSchema/configuration.schema.json index 8655d8b..f994c73 100644 --- a/code/network-generator/network_generation/model/jsonSchema/configuration.schema.json +++ b/code/network-generator/network_generation/model/jsonSchema/configuration.schema.json @@ -238,8 +238,8 @@ "required": [ "sector-count", "cell-angle", - "cell-scale-factor-for-handover-area", - "max-reach" + "cellScaleFactorForHandoverArea", + "maxReach" ], "properties": { "sector-count": { @@ -257,13 +257,13 @@ "maximum": 360, "exclusiveMinimum": 0 }, - "cell-scale-factor-for-handover-area": { + "cellScaleFactorForHandoverArea": { "description": "A factor to increase the cell polygon for handover areas in procent [%]", "type": "integer", "minimum": 0, "maximum": 50 }, - "max-reach": { + "maxReach": { "description": "The maximal distance a UE can reach the cell in meters. The value also defines the radius around a tower where UEs may select a NRCellDU of an O-RAN-RU mounted at this tower.", "type": "integer", "minimum": 15, -- 2.16.6