From 8b713ed09d061baacf624a533be3351e7dcb0500 Mon Sep 17 00:00:00 2001 From: sebdet Date: Wed, 19 Jan 2022 10:08:13 +0100 Subject: [PATCH] Additional fixes due to E-Release updates Helm overrides and topology for python sdk test updated to fix the tests + Introduction of automatic fault reporting by sdnc in python SDK tests + Fix A1 Sim addresses in oran override Issue-ID: NONRTRIC-622 Signed-off-by: sebdet Change-Id: Idd73e737570fe4d25cfbeaab9cea9ec1fcb5cce7 --- smo-install/helm-override/onap-override.yaml | 12 +- smo-install/helm-override/oran-override.yaml | 13 +- smo-install/oran_oom/a1simulator/values.yaml | 16 +- .../src/orantests/configuration/settings.py | 6 +- .../test/pythonsdk/src/orantests/conftest.py | 54 +- .../resources/faults-config/event-settings-du.json | 23 + .../resources/faults-config/event-settings-ru.json | 27 + .../network-simulators-override.yaml | 58 + .../network-simulators-topology-override.yaml | 444 + .../test/pythonsdk/src/orantests/test_a1sim.py | 27 + smo-install/test/pythonsdk/test.json | 212 - .../test/topology-generator/network-topology.json | 120593 ++++++++++++++++++ 12 files changed, 121256 insertions(+), 229 deletions(-) create mode 100644 smo-install/test/pythonsdk/src/orantests/resources/faults-config/event-settings-du.json create mode 100644 smo-install/test/pythonsdk/src/orantests/resources/faults-config/event-settings-ru.json create mode 100644 smo-install/test/pythonsdk/src/orantests/resources/network-simulators-topology/network-simulators-override.yaml create mode 100644 smo-install/test/pythonsdk/src/orantests/resources/network-simulators-topology/network-simulators-topology-override.yaml create mode 100644 smo-install/test/pythonsdk/src/orantests/test_a1sim.py delete mode 100644 smo-install/test/pythonsdk/test.json create mode 100644 smo-install/test/topology-generator/network-topology.json diff --git a/smo-install/helm-override/onap-override.yaml b/smo-install/helm-override/onap-override.yaml index 308e98a5..950fd2d1 100644 --- a/smo-install/helm-override/onap-override.yaml +++ b/smo-install/helm-override/onap-override.yaml @@ -61,37 +61,37 @@ a1policymanagement: enabled: true rics: - name: ric1 - link: http://a1-sim-osc-0.a1-sim.nonrtric:8085 + link: http://a1-sim-osc-0.nonrtric:8085 controller: controller1 managedElementIds: - kista_1 - kista_2 - name: ric2 - link: http://a1-sim-osc-1.a1-sim.nonrtric:8085 + link: http://a1-sim-osc-1.nonrtric:8085 controller: controller1 managedElementIds: - kista_1 - kista_2 - name: ric3 - link: http://a1-sim-std-0.a1-sim.nonrtric:8085 + link: http://a1-sim-std-0.nonrtric:8085 controller: controller1 managedElementIds: - kista_1 - kista_2 - name: ric4 - link: http://a1-sim-std-1.a1-sim.nonrtric:8085 + link: http://a1-sim-std-1.nonrtric:8085 controller: controller1 managedElementIds: - kista_1 - kista_2 - name: ric5 - link: http://a1-sim-std2-0.a1-sim.nonrtric:8085 + link: http://a1-sim-std2-0.nonrtric:8085 controller: controller1 managedElementIds: - kista_1 - kista_2 - name: ric6 - link: http://a1-sim-std2-1.a1-sim.nonrtric:8085 + link: http://a1-sim-std2-1.nonrtric:8085 controller: controller1 managedElementIds: - kista_1 diff --git a/smo-install/helm-override/oran-override.yaml b/smo-install/helm-override/oran-override.yaml index caa56857..c2ccb22c 100644 --- a/smo-install/helm-override/oran-override.yaml +++ b/smo-install/helm-override/oran-override.yaml @@ -111,13 +111,22 @@ oru-app: a1simulator: a1Sims: - - name: a1-sim-osc + - name: a1-sim-osc-0 a1Version: OSC_2.1.0 allowHttp: true + - name: a1-sim-osc-1 + a1Version: OSC_2.1.0 + allowHttp: true + - name: a1-sim-std-0 + a1Version: STD_1.1.3 + allowHttp: true - name: a1-sim-std-1 a1Version: STD_1.1.3 allowHttp: true - - name: a1-sim-std-2 + - name: a1-sim-std2-0 + a1Version: STD_2.0.0 + allowHttp: true + - name: a1-sim-std2-1 a1Version: STD_2.0.0 allowHttp: true diff --git a/smo-install/oran_oom/a1simulator/values.yaml b/smo-install/oran_oom/a1simulator/values.yaml index 608916ef..395523f9 100644 --- a/smo-install/oran_oom/a1simulator/values.yaml +++ b/smo-install/oran_oom/a1simulator/values.yaml @@ -12,14 +12,26 @@ service: httpsPort: 8185 a1Sims: - - name: a1-sim-osc + - name: a1-sim-osc-0 a1Version: OSC_2.1.0 allowHttp: true + - name: a1-sim-osc-1 + a1Version: OSC_2.1.0 + allowHttp: true + + - name: a1-sim-std-0 + a1Version: STD_1.1.3 + allowHttp: true + - name: a1-sim-std-1 a1Version: STD_1.1.3 allowHttp: true - - name: a1-sim-std-2 + - name: a1-sim-std2-0 + a1Version: STD_2.0.0 + allowHttp: true + + - name: a1-sim-std2-1 a1Version: STD_2.0.0 allowHttp: true diff --git a/smo-install/test/pythonsdk/src/orantests/configuration/settings.py b/smo-install/test/pythonsdk/src/orantests/configuration/settings.py index 6abd625d..eae09251 100644 --- a/smo-install/test/pythonsdk/src/orantests/configuration/settings.py +++ b/smo-install/test/pythonsdk/src/orantests/configuration/settings.py @@ -72,9 +72,9 @@ POLICY_BASICAUTH = { 'username': 'healthcheck', 'password': 'zb!XztG34' } DMAAP_URL = "http://"+subprocess.run("kubectl get services message-router -n onap |grep message-router | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":3904" -A1SIM_OSC_URL = "http://"+subprocess.run("kubectl get services a1-sim-osc -n nonrtric |grep a1-sim-osc | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":8085" -A1SIM_STD1_URL = "http://"+subprocess.run("kubectl get services a1-sim-std-1 -n nonrtric |grep a1-sim-std-1 | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":3904" -A1SIM_STD2_URL = "http://"+subprocess.run("kubectl get services a1-sim-std-2 -n nonrtric |grep a1-sim-std-2 | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":3904" +A1SIM_OSC_URL = "http://"+subprocess.run("kubectl get services a1-sim-osc-0 -n nonrtric |grep a1-sim-osc-0 | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":8085" +A1SIM_STD1_URL = "http://"+subprocess.run("kubectl get services a1-sim-std1-0 -n nonrtric |grep a1-sim-std1-0 | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":3904" +A1SIM_STD2_URL = "http://"+subprocess.run("kubectl get services a1-sim-std2-0 -n nonrtric |grep a1-sim-std2-0 | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":3904" POLICY_PAP_URL = "https://"+subprocess.run("kubectl get services policy-pap -n onap |grep policy-pap | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":6969" POLICY_API_URL = "https://"+subprocess.run("kubectl get services policy-api -n onap |grep policy-api | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":6969" diff --git a/smo-install/test/pythonsdk/src/orantests/conftest.py b/smo-install/test/pythonsdk/src/orantests/conftest.py index 82d19ce5..50bb0ec0 100644 --- a/smo-install/test/pythonsdk/src/orantests/conftest.py +++ b/smo-install/test/pythonsdk/src/orantests/conftest.py @@ -1,12 +1,14 @@ import pytest import logging import logging.config -from subprocess import check_output +from subprocess import check_output, run from waiting import wait import time from onapsdk.configuration import settings from oransdk.dmaap.dmaap import OranDmaap import os +import json +import requests resources_path="./resources" @@ -20,11 +22,19 @@ logger = logging.getLogger("Test Session setup") def start_network_simulators(): + logger.info ("Clean up any network simulators") + cmd="kubectl delete namespace network" + run(cmd, shell=True, check=False) + logger.info ("Start the network simulators") cmd="kubectl create namespace network" check_output(cmd, shell=True).decode('utf-8') - cmd=f"helm install --debug oran-simulator local/ru-du-simulators --namespace network -f {resources_path}/network-simulators-override.yaml -f {resources_path}/network-simulators-topology-override.yaml" + cmd=f"helm install --debug oran-simulator local/ru-du-simulators --namespace network -f {resources_path}/network-simulators-topology/network-simulators-override.yaml -f {resources_path}/network-simulators-topology/network-simulators-topology-override.yaml" check_output(cmd, shell=True).decode('utf-8') +def get_all_simulators(): + dockerFilter = check_output("kubectl get services -n network -o name | awk -F \"/\" '{print $2}'", shell=True) + return dockerFilter.splitlines() + def stop_network_simulators(): cmd="kubectl delete namespace network" return check_output(cmd, shell=True).decode('utf-8') @@ -62,6 +72,39 @@ def is_nonrtric_up(): logger.info ("NONRTRIC is Down") return False +def update_event_settings(nfName, nfType): + file = f'{resources_path}/faults-config/event-settings-'+nfType+'.json' + print ("File name:" + file) + with open(file) as json_file: + body = json.load(json_file) + url = settings.SDNC_URL + '/rests/data/network-topology:network-topology/topology=topology-netconf/node=' + nfName + '/yang-ext:mount/nts-network-function:simulation/network-function' + print ("url:"+url) + headers = { + 'content-type': 'application/yang-data+json', + 'accept': 'application/yang-data+json', + 'Authorization' : settings.SDNC_AUTH + } + try: + response = requests.put(url, verify=False, json=body, headers=headers) + print("Response:" + str(response)) + except requests.exceptions.Timeout: + sys.exit('HTTP request failed, please check you internet connection.') + except requests.exceptions.TooManyRedirects: + sys.exit('HTTP request failed, please check your proxy settings.') + except requests.exceptions.RequestException as e: + raise SystemExit(e) + return response.status_code >= 200 and response.status_code < 300 + +def enable_events_for_all_simulators(): + for container in get_all_simulators(): + name = container.decode("utf-8") + if "o-" in name: + if "o-ru" in name: + print("Set", name, update_event_settings(name, "ru")) + if "o-du" in name: + print("Set", name, update_event_settings(name, "du")) + + def wait_for_smo_to_be_running(): wait(lambda: is_onap_up() and is_nonrtric_up(), sleep_seconds=10, timeout_seconds=300, waiting_for="SMO to be ready") @@ -84,9 +127,12 @@ def pytest_sessionstart(session): start_network_simulators() wait_for_network_simulators_to_be_running() # Wait enough time to have at least the SDNR notifications sent - time.sleep(30) - logger.info ("Test Session setup completed successfully") + logger.info ("Waiting 60s that SDNR sends all registration events to VES") + time.sleep(60) + logger.info ("Enabling faults/events reporting on SDNR") + enable_events_for_all_simulators() + logger.info ("Test Session setup completed successfully") def pytest_sessionfinish(session, exitstatus): diff --git a/smo-install/test/pythonsdk/src/orantests/resources/faults-config/event-settings-du.json b/smo-install/test/pythonsdk/src/orantests/resources/faults-config/event-settings-du.json new file mode 100644 index 00000000..108b10a6 --- /dev/null +++ b/smo-install/test/pythonsdk/src/orantests/resources/faults-config/event-settings-du.json @@ -0,0 +1,23 @@ +{ + "nts-network-function:network-function": { + "fault-generation": { + "fault-delay-list": [ + { + "index": 0, + "delay-period": 20 + } + ] + }, + "ves": { + "pnf-registration": true, + "faults-enabled": true, + "heartbeat-period": 120 + }, + "netconf": { + "faults-enabled": false, + "call-home": false + }, + "mount-point-addressing-method": "docker-mapping", + "function-type": "NTS_FUNCTION_TYPE_O_RAN_O_DU" + } + } \ No newline at end of file diff --git a/smo-install/test/pythonsdk/src/orantests/resources/faults-config/event-settings-ru.json b/smo-install/test/pythonsdk/src/orantests/resources/faults-config/event-settings-ru.json new file mode 100644 index 00000000..ff875def --- /dev/null +++ b/smo-install/test/pythonsdk/src/orantests/resources/faults-config/event-settings-ru.json @@ -0,0 +1,27 @@ +{ + "nts-network-function:network-function": { + "fault-generation": { + "fault-delay-list": [ + { + "index": 0, + "delay-period": 10 + }, + { + "index": 1, + "delay-period": 30 + } + ] + }, + "ves": { + "pnf-registration": false, + "faults-enabled": false, + "heartbeat-period": 0 + }, + "netconf": { + "faults-enabled": true, + "call-home": true + }, + "mount-point-addressing-method": "docker-mapping", + "function-type": "NTS_FUNCTION_TYPE_O_RAN_O_RU_FH" + } + } \ No newline at end of file diff --git a/smo-install/test/pythonsdk/src/orantests/resources/network-simulators-topology/network-simulators-override.yaml b/smo-install/test/pythonsdk/src/orantests/resources/network-simulators-topology/network-simulators-override.yaml new file mode 100644 index 00000000..4749a819 --- /dev/null +++ b/smo-install/test/pythonsdk/src/orantests/resources/network-simulators-topology/network-simulators-override.yaml @@ -0,0 +1,58 @@ +### +# ============LICENSE_START======================================================= +# ORAN SMO Package +# ================================================================================ +# Copyright (C) 2021 AT&T Intellectual Property. All rights +# reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END============================================ +# =================================================================== +# +### + +##### Network Simulators ##### + +ru-du-simulators: + topologyServer: true + ruSimulator: true + duSimulator: true + + +x-ntsimNg: &ntsimConfig + sdnControllerUsername: admin + sdnControllerPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U + + vesEndpointUsername: sample1 + vesEndpointPassword: sample1 + +ru-simulator: + ntsimNg: + <<: *ntsimConfig + ipV6Enabled: false + sshConnections: 0 + tlsConnections: 1 + +du-simulator: + ntsimNg: + <<: *ntsimConfig + ipV6Enabled: false + sshConnections: 1 + tlsConnections: 0 + +topology-server: + ntsimNg: + <<: *ntsimConfig + ipV6Enabled: false + sshConnections: 0 + tlsConnections: 1 diff --git a/smo-install/test/pythonsdk/src/orantests/resources/network-simulators-topology/network-simulators-topology-override.yaml b/smo-install/test/pythonsdk/src/orantests/resources/network-simulators-topology/network-simulators-topology-override.yaml new file mode 100644 index 00000000..2f09d78e --- /dev/null +++ b/smo-install/test/pythonsdk/src/orantests/resources/network-simulators-topology/network-simulators-topology-override.yaml @@ -0,0 +1,444 @@ +### +# ============LICENSE_START======================================================= +# ORAN SMO Package +# ================================================================================ +# Copyright (C) 2021 AT&T Intellectual Property. All rights +# reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END============================================ +# =================================================================== +# +### + + +###### Sim Topology Override ######## +ru-simulator: + rus: + - name: o-ru-11211 + simulatedFaults: + - name: fault1 + condition: "Interface Fault" + severity: CRITICAL + specificProblem: "Interface Fault" + faultSeverity: CRITICAL + cleared: false + text: "Interface Fault" + faultId: 30 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + - name: fault1-close + condition: "Interface Fault" + severity: NORMAL + specificProblem: "Interface Fault" + faultSeverity: CRITICAL + cleared: true + text: "Interface Fault" + faultId: 30 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + + - name: fault2 + condition: "C/U-plane logical Connection faulty" + severity: CRITICAL + specificProblem: "C/U-plane logical Connection faulty" + faultSeverity: CRITICAL + cleared: false + text: "C/U-plane logical Connection faulty" + faultId: 28 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + - name: fault2-close + condition: "C/U-plane logical Connection faulty" + severity: NORMAL + specificProblem: "C/U-plane logical Connection faulty" + faultSeverity: CRITICAL + cleared: true + text: "C/U-plane logical Connection faulty" + faultId: 28 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + + - name: o-ru-11221 + simulatedFaults: + - name: fault1 + condition: "Interface Fault" + severity: CRITICAL + specificProblem: "Interface Fault" + faultSeverity: CRITICAL + cleared: false + text: "Interface Fault" + faultId: 30 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + - name: fault1-close + condition: "Interface Fault" + severity: NORMAL + specificProblem: "Interface Fault" + faultSeverity: CRITICAL + cleared: true + text: "Interface Fault" + faultId: 30 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + + - name: fault2 + condition: "C/U-plane logical Connection faulty" + severity: CRITICAL + specificProblem: "C/U-plane logical Connection faulty" + faultSeverity: CRITICAL + cleared: false + text: "C/U-plane logical Connection faulty" + faultId: 28 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + - name: fault2-close + condition: "C/U-plane logical Connection faulty" + severity: NORMAL + specificProblem: "C/U-plane logical Connection faulty" + faultSeverity: CRITICAL + cleared: true + text: "C/U-plane logical Connection faulty" + faultId: 28 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + + - name: o-ru-11222 + simulatedFaults: + - name: fault1 + condition: "Interface Fault" + severity: CRITICAL + specificProblem: "Interface Fault" + faultSeverity: CRITICAL + cleared: false + text: "Interface Fault" + faultId: 30 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + - name: fault1-close + condition: "Interface Fault" + severity: NORMAL + specificProblem: "Interface Fault" + faultSeverity: CRITICAL + cleared: true + text: "Interface Fault" + faultId: 30 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + + - name: fault2 + condition: "C/U-plane logical Connection faulty" + severity: CRITICAL + specificProblem: "C/U-plane logical Connection faulty" + faultSeverity: CRITICAL + cleared: false + text: "C/U-plane logical Connection faulty" + faultId: 28 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + - name: fault2-close + condition: "C/U-plane logical Connection faulty" + severity: NORMAL + specificProblem: "C/U-plane logical Connection faulty" + faultSeverity: CRITICAL + cleared: true + text: "C/U-plane logical Connection faulty" + faultId: 28 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + + - name: o-ru-11223 + simulatedFaults: + - name: fault1 + condition: "Interface Fault" + severity: CRITICAL + specificProblem: "Interface Fault" + faultSeverity: CRITICAL + cleared: false + text: "Interface Fault" + faultId: 30 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + - name: fault1-close + condition: "Interface Fault" + severity: NORMAL + specificProblem: "Interface Fault" + faultSeverity: CRITICAL + cleared: true + text: "Interface Fault" + faultId: 30 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + + - name: fault2 + condition: "C/U-plane logical Connection faulty" + severity: CRITICAL + specificProblem: "C/U-plane logical Connection faulty" + faultSeverity: CRITICAL + cleared: false + text: "C/U-plane logical Connection faulty" + faultId: 28 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + - name: fault2-close + condition: "C/U-plane logical Connection faulty" + severity: NORMAL + specificProblem: "C/U-plane logical Connection faulty" + faultSeverity: CRITICAL + cleared: true + text: "C/U-plane logical Connection faulty" + faultId: 28 + object: "09a95e08-5b53-4734-815f-a9c12300fc62" + +du-simulator: + dus: + - name: o-du-1121 + operational: + administrativeState: locked + operationalState: enabled + running: + administrativeState: unlocked + cell: + name: cell-1 + trafficState: active + localId: 1 + physicalCellId: 1 + operational: + administrativeState: locked + operationalState: enabled + running: + administrativeState: unlocked + radioResourcePolicy: + name: rrm-pol-1 + resourceType: prb + operational: + administrativeState: locked + operationalState: enabled + running: + administrativeState: unlocked + + simulatedFaults: + - name: fault1 + condition: "CPRI Port Down" + severity: MAJOR + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + object: "Slot-0-Port-A" + - name: fault1-close + condition: "CPRI Port Down" + severity: NORMAL + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: true + text: "CPRI Port Down" + object: "Slot-0-Port-A" + + - name: fault2 + condition: "CPRI Port Down" + severity: MAJOR + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + object: "Slot-0-Port-C" + - name: fault2-close + condition: "CPRI Port Down" + severity: NORMAL + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: true + text: "CPRI Port Down" + object: "Slot-0-Port-C" + + - name: fault3 + condition: "CPRI Port Down" + severity: MAJOR + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + object: "Slot-2-Port-B" + - name: fault3-close + condition: "CPRI Port Down" + severity: NORMAL + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: true + text: "CPRI Port Down" + object: "Slot-2-Port-B" + + - name: o-du-1122 + operational: + administrativeState: locked + operationalState: enabled + running: + administrativeState: unlocked + cell: + name: cell-2 + trafficState: active + localId: 2 + physicalCellId: 2 + operational: + administrativeState: locked + operationalState: enabled + running: + administrativeState: unlocked + radioResourcePolicy: + name: rrm-pol-2 + resourceType: prb + operational: + administrativeState: locked + operationalState: enabled + running: + administrativeState: unlocked + + simulatedFaults: + - name: fault1 + condition: "CPRI Port Down" + severity: MAJOR + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + object: "Slot-0-Port-A" + - name: fault1-close + condition: "CPRI Port Down" + severity: NORMAL + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: true + text: "CPRI Port Down" + object: "Slot-0-Port-A" + + - name: fault2 + condition: "CPRI Port Down" + severity: MAJOR + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + object: "Slot-0-Port-C" + - name: fault2-close + condition: "CPRI Port Down" + severity: NORMAL + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: true + text: "CPRI Port Down" + object: "Slot-0-Port-C" + + - name: fault3 + condition: "CPRI Port Down" + severity: MAJOR + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + object: "Slot-2-Port-B" + - name: fault3-close + condition: "CPRI Port Down" + severity: NORMAL + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: true + text: "CPRI Port Down" + object: "Slot-2-Port-B" + + +topology-server: + simulatedFaults: + - name: fault1 + condition: "CPRI Port Down" + severity: MAJOR + object: "Slot-0-Port-A" + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + - name: fault1-close + condition: "CPRI Port Down" + severity: NORMAL + object: "Slot-0-Port-A" + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: true + text: "CPRI Port Down" + + - name: fault2 + condition: "CPRI Port Down" + severity: MAJOR + object: "Slot-0-Port-C" + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + - name: fault2-close + condition: "CPRI Port Down" + severity: NORMAL + object: "Slot-0-Port-C" + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: true + text: "CPRI Port Down" + + - name: fault3 + condition: "CPRI Port Down" + severity: MAJOR + object: "Slot-2-Port-B" + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + - name: fault3-close + condition: "CPRI Port Down" + severity: NORMAL + object: "Slot-2-Port-B" + specificProblem: "CPRI Port Down" + faultSeverity: MAJOR + cleared: false + text: "CPRI Port Down" + nodes: + - name: o-du-1121 + uuid: bc089635-7a85-4197-9310-9b14f476a4b9 + nodeEdgePointUuid: 639f24cb-a5e9-454f-b05d-6307be419aff + interfaceName: "O-DU-interface-1" + interfaceDescription: "Simulated interface for O-DU" + - name: o-ru-11211 + uuid: 6b0d3930-100b-466c-9f44-2748ffb6baa2 + nodeEdgePointUuid: bb7e5882-6e4a-46a7-a95b-0bb7310ede24 + interfaceName: "09a95e08-5b53-4834-815f-a9c12300fc63" + interfaceDescription: "Simulated interface for O-RU" + + - name: o-du-1122 + uuid: ac089635-7a85-4197-9310-9b14f476a4a9 + nodeEdgePointUuid: 539f24cb-a5e9-454f-b05d-6307be419afe + interfaceName: "O-DU-interface-1" + interfaceDescription: "Simulated interface for O-DU" + - name: o-ru-11221 + uuid: 6b0d3930-100b-466c-9f44-2748ffb6aaa1 + nodeEdgePointUuid: bb7e5882-6e3a-46a7-a95b-0bb7310ede22 + interfaceName: "09a95e08-5b53-4734-815f-a9c12300fc62" + interfaceDescription: "Simulated interface for O-RU" + - name: o-ru-11222 + uuid: 69a8fdf0-2bdd-44a2-9bc4-8813640fa02c + nodeEdgePointUuid: 124488fc-05d0-421b-8a16-4eaf86cbc89b + interfaceName: "0d242150-33a6-4e7c-9988-ae3b01e8a7ea" + interfaceDescription: "Simulated interface for O-RU" + - name: o-ru-11223 + uuid: c8499a83-211e-4cef-be30-a1cc2208bbb6 + nodeEdgePointUuid: 5f01a4c2-9067-4b05-a1a5-7d8998f4f11f + interfaceName: "d3ea2f17-a841-4e71-9ef9-9549159aabe7" + interfaceDescription: "Simulated interface for O-RU" + + topologyUuid: 7adfee73-44be-4813-a0dc-89f657f0a436 + links: + - duNode: o-du-1121 + ruNode: o-ru-11211 + uuid: ac78b69f-22df-46fd-ae76-cc989bc30bbd + + - duNode: o-du-1122 + ruNode: o-ru-11221 + uuid: ac78b69f-22df-46fd-ae76-cc989bc30abc + - duNode: o-du-1122 + ruNode: o-ru-11222 + uuid: ac78b69f-22df-46fd-ae76-cc989bc30ae9 + - duNode: o-du-1122 + ruNode: o-ru-11223 + uuid: bc98b69f-22df-46fd-ae76-cc989bc30ae9 diff --git a/smo-install/test/pythonsdk/src/orantests/test_a1sim.py b/smo-install/test/pythonsdk/src/orantests/test_a1sim.py new file mode 100644 index 00000000..5a92efbd --- /dev/null +++ b/smo-install/test/pythonsdk/src/orantests/test_a1sim.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python3 +# SPDX-License-Identifier: Apache-2.0 + +import logging +from pathlib import Path +from onapsdk.configuration import settings +from oransdk.dmaap.dmaap import OranDmaap +from oransdk.a1sim.a1sim import A1sim +from oransdk.utils.jinja import jinja_env + +BASIC_AUTH = {} + +logging.config.dictConfig(settings.LOG_CONFIG) +logger = logging.getLogger("test DMAAP") + +def test_a1sim(): + logger.info("Get ric version for ost") + a1sim = A1sim() + version1 = a1sim.check_version(settings.A1SIM_OSC_URL) + + status = a1sim.check_status(settings.A1SIM_OSC_URL) + + number = a1sim.get_policy_number(settings.A1SIM_OSC_URL) + + data = jinja_env().get_template("OSC/policy_type.json.j2").render() + a1sim.create_policy_type(settings.A1SIM_OSC_URL, 1, data) + assert(True) diff --git a/smo-install/test/pythonsdk/test.json b/smo-install/test/pythonsdk/test.json deleted file mode 100644 index c511a95a..00000000 --- a/smo-install/test/pythonsdk/test.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "event": { - "commonEventHeader": { - "sourceId": "", - "startEpochMicrosec": 1639658749500474, - "eventId": "EventType5G-0", - "timeZoneOffset": "+00:00", - "reportingEntityId": "", - "internalHeaderFields": { - "collectorTimeStamp": "Thu, 12 16 2021 12:45:49 UTC" - }, - "priority": "Normal", - "version": "4.1", - "nfVendorName": "sdn", - "reportingEntityName": "o-du-1121", - "sequence": 0, - "domain": "pnfRegistration", - "lastEpochMicrosec": 1639658749500474, - "eventName": "EventType5G", - "vesEventListenerVersion": "7.2.1", - "sourceName": "o-du-1121", - "nfNamingCode": "sdn controller" - }, - "pnfRegistrationFields": { - "unitType": "O-RAN-sim", - "macAddress": "19:17:b0:ba:ad:16", - "serialNumber": "o-du-1121-10.1.42.145-830-Simulated Device Melacon", - "additionalFields": { - "protocol": "SSH", - "password": "netconf!", - "oamPort": "830", - "betweenAttemptsTimeout": "2000", - "keepaliveDelay": "120", - "sleep-factor": "1.5", - "reconnectOnChangedSchema": "false", - "connectionTimeout": "20000", - "maxConnectionAttempts": "100", - "username": "netconf", - "tcpOnly": "false" - }, - "pnfRegistrationFieldsVersion": "2.0", - "manufactureDate": "2019-08-16", - "modelNumber": "Simulated Device Melacon", - "lastServiceDate": "2019-08-16", - "unitFamily": "Simulated Device", - "vendorName": "Melacon", - "oamV4IpAddress": "10.1.42.145", - "softwareVersion": "2.3.5" - } - } -}","{ - "event": { - "commonEventHeader": { - "sourceId": "", - "startEpochMicrosec": 1639658750697573, - "eventId": "EventType5G-0", - "timeZoneOffset": "+00:00", - "reportingEntityId": "", - "internalHeaderFields": { - "collectorTimeStamp": "Thu, 12 16 2021 12:45:50 UTC" - }, - "priority": "Normal", - "version": "4.1", - "nfVendorName": "sdn", - "reportingEntityName": "o-du-1122", - "sequence": 0, - "domain": "pnfRegistration", - "lastEpochMicrosec": 1639658750697573, - "eventName": "EventType5G", - "vesEventListenerVersion": "7.2.1", - "sourceName": "o-du-1122", - "nfNamingCode": "sdn controller" - }, - "pnfRegistrationFields": { - "unitType": "O-RAN-sim", - "macAddress": "90:6c:3c:27:e3:d6", - "serialNumber": "o-du-1122-10.1.42.253-830-Simulated Device Melacon", - "additionalFields": { - "protocol": "SSH", - "password": "netconf!", - "oamPort": "830", - "betweenAttemptsTimeout": "2000", - "keepaliveDelay": "120", - "sleep-factor": "1.5", - "reconnectOnChangedSchema": "false", - "connectionTimeout": "20000", - "maxConnectionAttempts": "100", - "username": "netconf", - "tcpOnly": "false" - }, - "pnfRegistrationFieldsVersion": "2.0", - "manufactureDate": "2019-08-16", - "modelNumber": "Simulated Device Melacon", - "lastServiceDate": "2019-08-16", - "unitFamily": "Simulated Device", - "vendorName": "Melacon", - "oamV4IpAddress": "10.1.42.253", - "softwareVersion": "2.3.5" - } - } -}","{ - "event": { - "commonEventHeader": { - "sourceId": "o-ru-11223", - "startEpochMicrosec": 1639658756241000, - "eventId": "o-ru-11223", - "nfcNamingCode": "", - "timeZoneOffset": "+00:00", - "internalHeaderFields": { - "collectorTimeStamp": "Thu, 12 16 2021 12:45:56 UTC" - }, - "eventType": "NetConf Callhome Registration", - "priority": "Normal", - "version": "4.1", - "nfVendorName": "NTS", - "reportingEntityName": "ONAP SDN-R", - "sequence": 0, - "domain": "pnfRegistration", - "lastEpochMicrosec": 1639658756241000, - "eventName": "o-ru-11223", - "vesEventListenerVersion": "7.2.1", - "sourceName": "o-ru-11223", - "nfNamingCode": "" - }, - "pnfRegistrationFields": { - "unitType": "chassis", - "serialNumber": "23412", - "additionalFields": {}, - "pnfRegistrationFieldsVersion": "2.0", - "manufactureDate": "Unknown", - "modelNumber": "O1-O-RU-Simulator", - "unitFamily": "interface org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.iana.hardware.rev180313.Chassis", - "vendorName": "NTS", - "oamV4IpAddress": "10.1.42.238", - "softwareVersion": "3.8.1 (2029-10-30 11:47:59)" - } - } -}","{ - "event": { - "commonEventHeader": { - "sourceId": "o-ru-11211", - "startEpochMicrosec": 1639658759987000, - "eventId": "o-ru-11211", - "nfcNamingCode": "", - "timeZoneOffset": "+00:00", - "internalHeaderFields": { - "collectorTimeStamp": "Thu, 12 16 2021 12:46:00 UTC" - }, - "eventType": "NetConf Callhome Registration", - "priority": "Normal", - "version": "4.1", - "nfVendorName": "NTS", - "reportingEntityName": "ONAP SDN-R", - "sequence": 0, - "domain": "pnfRegistration", - "lastEpochMicrosec": 1639658759987000, - "eventName": "o-ru-11211", - "vesEventListenerVersion": "7.2.1", - "sourceName": "o-ru-11211", - "nfNamingCode": "" - }, - "pnfRegistrationFields": { - "unitType": "chassis", - "serialNumber": "23412", - "additionalFields": {}, - "pnfRegistrationFieldsVersion": "2.0", - "manufactureDate": "Unknown", - "modelNumber": "O1-O-RU-Simulator", - "unitFamily": "interface org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.iana.hardware.rev180313.Chassis", - "vendorName": "NTS", - "oamV4IpAddress": "10.1.42.251", - "softwareVersion": "3.8.1 (2029-10-30 11:47:59)" - } - } -}","{ - "event": { - "commonEventHeader": { - "sourceId": "o-ru-11221", - "startEpochMicrosec": 1639658763586000, - "eventId": "o-ru-11221", - "nfcNamingCode": "", - "timeZoneOffset": "+00:00", - "internalHeaderFields": { - "collectorTimeStamp": "Thu, 12 16 2021 12:46:03 UTC" - }, - "eventType": "NetConf Callhome Registration", - "priority": "Normal", - "version": "4.1", - "nfVendorName": "NTS", - "reportingEntityName": "ONAP SDN-R", - "sequence": 0, - "domain": "pnfRegistration", - "lastEpochMicrosec": 1639658763586000, - "eventName": "o-ru-11221", - "vesEventListenerVersion": "7.2.1", - "sourceName": "o-ru-11221", - "nfNamingCode": "" - }, - "pnfRegistrationFields": { - "unitType": "chassis", - "serialNumber": "23412", - "additionalFields": {}, - "pnfRegistrationFieldsVersion": "2.0", - "manufactureDate": "Unknown", - "modelNumber": "O1-O-RU-Simulator", - "unitFamily": "interface org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.iana.hardware.rev180313.Chassis", - "vendorName": "NTS", - "oamV4IpAddress": "10.1.42.237", - "softwareVersion": "3.8.1 (2029-10-30 11:47:59)" - } - } -} diff --git a/smo-install/test/topology-generator/network-topology.json b/smo-install/test/topology-generator/network-topology.json new file mode 100644 index 00000000..ef2b3472 --- /dev/null +++ b/smo-install/test/topology-generator/network-topology.json @@ -0,0 +1,120593 @@ +{ + "tapi-common:context": { + "uuid": "6f69da3a-a243-4058-974e-baf11c357b7a", + "name": [ + { + "value-name": "context-name", + "value": "Generated Topology" + } + ], + "tapi-topology:topology-context": { + "topology": [ + { + "uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node": [ + { + "uuid": "f2163773-9400-4439-a064-bc000df9ff0e", + "owned-node-edge-point": [ + { + "uuid": "791da0b0-04f8-404d-b653-9ca265ceb685", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111111" + }, + { + "value-name": "topology-node-local-id", + "value": "111111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f9652c02-64cc-4f18-a80c-4eac0f4d52da", + "owned-node-edge-point": [ + { + "uuid": "f3000387-f57e-49ea-8f8c-fa84b198a458", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111112" + }, + { + "value-name": "topology-node-local-id", + "value": "111112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "336cc7fb-e907-4d91-b7eb-6cfdabe815dc", + "owned-node-edge-point": [ + { + "uuid": "292415b3-3ca5-4f9b-9b14-c85a8a33d138", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111113" + }, + { + "value-name": "topology-node-local-id", + "value": "111113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "15259d1e-e94a-4fbe-97cf-5ed984776ff7", + "owned-node-edge-point": [ + { + "uuid": "be5a31ca-1df8-4283-be23-6e4b5486d8af", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111114" + }, + { + "value-name": "topology-node-local-id", + "value": "111114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "110e82b1-18f9-4979-ac15-338f450087a1", + "owned-node-edge-point": [ + { + "uuid": "a8d81d41-14ee-4476-8037-f1e3d812d101", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111115" + }, + { + "value-name": "topology-node-local-id", + "value": "111115" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "69ff0e0c-63a6-46c0-8755-11e8ce93e487", + "owned-node-edge-point": [ + { + "uuid": "48be9fe8-790b-42b2-ab4d-80b6d261a480", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111116" + }, + { + "value-name": "topology-node-local-id", + "value": "111116" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7ac95a4b-6ec7-4875-8a50-c7eedee4ea25", + "owned-node-edge-point": [ + { + "uuid": "0960220c-6ec9-482c-b172-11ee4581bae9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111117" + }, + { + "value-name": "topology-node-local-id", + "value": "111117" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cef878d9-8bbf-40b6-9403-f1b649378801", + "owned-node-edge-point": [ + { + "uuid": "959a7ebf-f387-4257-b948-c003e98d5720", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111118" + }, + { + "value-name": "topology-node-local-id", + "value": "111118" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "620d5ec8-6bb0-4411-9c6e-f04f2b5a30bd", + "owned-node-edge-point": [ + { + "uuid": "e8a06e0e-5dea-49aa-b864-48bd5ca41210", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111119" + }, + { + "value-name": "topology-node-local-id", + "value": "111119" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "owned-node-edge-point": [ + { + "uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11111" + } + ] + }, + { + "uuid": "52d8f274-cdb7-4d9a-9080-cef2e8afb09a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11111" + }, + { + "value-name": "topology-node-local-id", + "value": "11111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "40138fbe-021d-4e9d-84f6-91b8e7d73d35", + "owned-node-edge-point": [ + { + "uuid": "3e238a77-18bf-4f13-83ef-21cd49414eb7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111121" + }, + { + "value-name": "topology-node-local-id", + "value": "111121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2ac5f2a7-545f-4391-8c12-214e67b52a1a", + "owned-node-edge-point": [ + { + "uuid": "1134a4f6-2195-48b9-ab42-c3785bbe6ebc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111122" + }, + { + "value-name": "topology-node-local-id", + "value": "111122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1215b86f-02bb-4a6c-a002-8f3561adba8d", + "owned-node-edge-point": [ + { + "uuid": "42eecee3-cf2d-4012-9a3f-bb72a398f03c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111123" + }, + { + "value-name": "topology-node-local-id", + "value": "111123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7956883d-990e-4b3f-878f-ecc25573f54f", + "owned-node-edge-point": [ + { + "uuid": "d4d32f02-06a7-437f-960f-fa46a9892dee", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111124" + }, + { + "value-name": "topology-node-local-id", + "value": "111124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f2cce5e1-4128-4e7e-a8c4-377b7ca0fc2d", + "owned-node-edge-point": [ + { + "uuid": "0670ee3d-e777-4042-b4a0-092952493699", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111125" + }, + { + "value-name": "topology-node-local-id", + "value": "111125" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f3d8f9be-cba7-4d69-9bd9-90c7bf457588", + "owned-node-edge-point": [ + { + "uuid": "472bd52a-f1b2-4d73-87b1-fd130b9818d2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111126" + }, + { + "value-name": "topology-node-local-id", + "value": "111126" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "33106cf1-47a5-4cd5-9291-681503cece90", + "owned-node-edge-point": [ + { + "uuid": "6c583e64-70a8-4c7d-82fc-f469803c04bc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111127" + }, + { + "value-name": "topology-node-local-id", + "value": "111127" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "128e6333-a0fc-4d7b-ab82-031971c4b7ed", + "owned-node-edge-point": [ + { + "uuid": "c12b96a9-e31b-413b-84df-28c0d04ba3bf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111128" + }, + { + "value-name": "topology-node-local-id", + "value": "111128" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "67eba53e-39d4-4609-b827-5c730598b4bd", + "owned-node-edge-point": [ + { + "uuid": "cbd88085-7bf0-4c01-8c4e-bac33a516c9b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111129" + }, + { + "value-name": "topology-node-local-id", + "value": "111129" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "owned-node-edge-point": [ + { + "uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11112" + } + ] + }, + { + "uuid": "7dfe04fd-6d85-4c97-ba96-721302e6c581", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11112" + }, + { + "value-name": "topology-node-local-id", + "value": "11112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bceb3ef8-0689-450d-b6d9-07f6e5850591", + "owned-node-edge-point": [ + { + "uuid": "64a577ab-df89-4000-a68f-d15146c836ae", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111131" + }, + { + "value-name": "topology-node-local-id", + "value": "111131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "52e32962-c49c-4f0b-9c1a-b2f841e95f8c", + "owned-node-edge-point": [ + { + "uuid": "3866be18-fefb-45c8-88bd-577497f1ff41", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111132" + }, + { + "value-name": "topology-node-local-id", + "value": "111132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "56c6718a-c826-4ea8-a7c0-844120eb9166", + "owned-node-edge-point": [ + { + "uuid": "cc9fb91a-29ec-4472-bb36-0b95e1f024aa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111133" + }, + { + "value-name": "topology-node-local-id", + "value": "111133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "431af8cb-439c-4c00-9322-fda6c165f23e", + "owned-node-edge-point": [ + { + "uuid": "837e056a-459f-4725-ab37-88af1090ad7a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111134" + }, + { + "value-name": "topology-node-local-id", + "value": "111134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dbb077be-c347-4618-89c9-9c8fb09a0678", + "owned-node-edge-point": [ + { + "uuid": "bb347c09-4756-4a3c-b936-888924f4c54f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111135" + }, + { + "value-name": "topology-node-local-id", + "value": "111135" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0266b646-31cf-4c27-815b-be29f4ba3c7e", + "owned-node-edge-point": [ + { + "uuid": "209f1d0e-376e-46ea-8932-12ec1e3ce743", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111136" + }, + { + "value-name": "topology-node-local-id", + "value": "111136" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "99550116-9db2-45f0-8271-0b3e80e44ddf", + "owned-node-edge-point": [ + { + "uuid": "6441e774-956a-42d2-a12c-43df10a1856a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111137" + }, + { + "value-name": "topology-node-local-id", + "value": "111137" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9ff78550-1dac-437a-96e3-bb7e0cbc48ec", + "owned-node-edge-point": [ + { + "uuid": "fae0d615-70e0-4b3e-8d21-4dc1f459bd16", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111138" + }, + { + "value-name": "topology-node-local-id", + "value": "111138" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "339463c4-e374-462f-9f06-3ae7a74c1a79", + "owned-node-edge-point": [ + { + "uuid": "aa774e85-8fa4-41d2-ac5a-279be6eb19ae", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111139" + }, + { + "value-name": "topology-node-local-id", + "value": "111139" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "owned-node-edge-point": [ + { + "uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11113" + } + ] + }, + { + "uuid": "522138e3-4a84-4522-a41a-f55984be3fe4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11113" + }, + { + "value-name": "topology-node-local-id", + "value": "11113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9000f80e-baaf-4d42-81b4-f569c297ef1f", + "owned-node-edge-point": [ + { + "uuid": "6f612f9a-7d37-4bf1-8350-4fc566ee5dc7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111141" + }, + { + "value-name": "topology-node-local-id", + "value": "111141" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d71cdea4-62fd-4bf1-ba45-1a2baab2ff17", + "owned-node-edge-point": [ + { + "uuid": "9638d954-1115-4377-a7b3-795e31d8955d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111142" + }, + { + "value-name": "topology-node-local-id", + "value": "111142" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "babab3fd-be6b-4fb5-b406-017153d4948a", + "owned-node-edge-point": [ + { + "uuid": "5bfb27c7-245e-4587-9bba-8fae030b1b3c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111143" + }, + { + "value-name": "topology-node-local-id", + "value": "111143" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a9e61cf4-fe46-4844-bd4e-adb1add16710", + "owned-node-edge-point": [ + { + "uuid": "b01833cd-b9d4-4bb9-8f2e-5fb24c84cf00", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111144" + }, + { + "value-name": "topology-node-local-id", + "value": "111144" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c321b651-f15a-4f57-b12b-a7cc21f2b477", + "owned-node-edge-point": [ + { + "uuid": "eba33c12-971c-49ba-92f7-eb0e8f298056", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111145" + }, + { + "value-name": "topology-node-local-id", + "value": "111145" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5cf12815-92ec-4fdc-ae8d-f057aa02b5bb", + "owned-node-edge-point": [ + { + "uuid": "d723f05c-cf49-48ff-8d5d-bf6b269c9444", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111146" + }, + { + "value-name": "topology-node-local-id", + "value": "111146" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1a0a62ba-9919-4361-9e9f-aa815c003bd6", + "owned-node-edge-point": [ + { + "uuid": "3fe131a1-8b2e-4fbc-832e-d2d03373a439", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111147" + }, + { + "value-name": "topology-node-local-id", + "value": "111147" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d814ac3e-d254-4605-8d2e-c70214339227", + "owned-node-edge-point": [ + { + "uuid": "830cce5b-9340-4708-93da-a438aee3fbef", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111148" + }, + { + "value-name": "topology-node-local-id", + "value": "111148" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "443d29d1-d4dd-46fc-8880-3c0089df9571", + "owned-node-edge-point": [ + { + "uuid": "124515dd-cb90-4fce-87d8-e1e26519c525", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111149" + }, + { + "value-name": "topology-node-local-id", + "value": "111149" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "owned-node-edge-point": [ + { + "uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11114" + } + ] + }, + { + "uuid": "f3a59998-0029-4daf-976a-5a073be58544", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11114" + }, + { + "value-name": "topology-node-local-id", + "value": "11114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d336d517-6e8b-4503-a65e-a8bb339feab4", + "owned-node-edge-point": [ + { + "uuid": "2564a737-f25f-4b0e-883e-936aec601f32", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "2564a737-f25f-4b0e-883e-936aec601f32" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1111" + } + ] + }, + { + "uuid": "a429fa3b-5b78-4014-aee7-ecb264c40e48", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1111" + }, + { + "value-name": "topology-node-local-id", + "value": "1111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f29c8636-88d5-488c-98a3-6253de0b32bc", + "owned-node-edge-point": [ + { + "uuid": "62a83672-1249-4f65-bacd-37d4202732dd", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111211" + }, + { + "value-name": "topology-node-local-id", + "value": "111211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9cc3d529-8664-4be9-8c9d-f4b95d1844eb", + "owned-node-edge-point": [ + { + "uuid": "20186f2a-ef99-412c-a07c-0afd56732cdf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111212" + }, + { + "value-name": "topology-node-local-id", + "value": "111212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7e79a3cb-a776-4848-ba0e-5d9101bcc610", + "owned-node-edge-point": [ + { + "uuid": "216e591f-1890-40c3-b272-19c578966be3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111213" + }, + { + "value-name": "topology-node-local-id", + "value": "111213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "020de2a1-deef-49b5-852c-73cc6f4ccb23", + "owned-node-edge-point": [ + { + "uuid": "7bf0cf42-8feb-48c8-93e2-95dd857396b6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111214" + }, + { + "value-name": "topology-node-local-id", + "value": "111214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "df7f4d0c-064c-4d9b-8b71-544e5143cb25", + "owned-node-edge-point": [ + { + "uuid": "e73bcfdf-a24b-4ed4-903b-5665d54cbd3e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111215" + }, + { + "value-name": "topology-node-local-id", + "value": "111215" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4c31361f-dc22-41f8-8de4-497261714a7d", + "owned-node-edge-point": [ + { + "uuid": "aaa59dd6-e177-4128-984d-f7615d31dccd", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111216" + }, + { + "value-name": "topology-node-local-id", + "value": "111216" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fbabe830-0087-4106-aac6-f8a59f901ac8", + "owned-node-edge-point": [ + { + "uuid": "93b22b6f-1364-458c-a0c4-f12132830368", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111217" + }, + { + "value-name": "topology-node-local-id", + "value": "111217" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7a148aa3-4dcb-405a-8897-7cc53b334cd3", + "owned-node-edge-point": [ + { + "uuid": "c61bc549-bd17-42ab-8311-06d0212f83c5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111218" + }, + { + "value-name": "topology-node-local-id", + "value": "111218" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c1387bc2-d55c-4960-841b-b765b7c09191", + "owned-node-edge-point": [ + { + "uuid": "b41fcdaa-9c71-4c9b-8eef-25b06a95deaa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111219" + }, + { + "value-name": "topology-node-local-id", + "value": "111219" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "owned-node-edge-point": [ + { + "uuid": "e2111308-caad-4230-9573-ceab9e275665", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11121" + } + ] + }, + { + "uuid": "e1977b3e-d0ff-46e6-9185-fe281411a974", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11121" + }, + { + "value-name": "topology-node-local-id", + "value": "11121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "56160ae6-3d5f-48f5-91a5-d1fa949f32f0", + "owned-node-edge-point": [ + { + "uuid": "a9a01f8d-497a-45df-824d-5432710053d7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111221" + }, + { + "value-name": "topology-node-local-id", + "value": "111221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c9a6eda4-ed9c-4d74-bc49-69b23805a0e5", + "owned-node-edge-point": [ + { + "uuid": "460fe7ec-50a3-40a4-9c4b-0a433100abb6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111222" + }, + { + "value-name": "topology-node-local-id", + "value": "111222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "676eea5d-0b97-4a84-ab38-6971c4cdd7f8", + "owned-node-edge-point": [ + { + "uuid": "afc49783-e035-4f48-a3bd-cbb3c93918b3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111223" + }, + { + "value-name": "topology-node-local-id", + "value": "111223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cf97ce2d-b161-476a-a777-21ad89a96400", + "owned-node-edge-point": [ + { + "uuid": "2e63620b-fbad-4d9a-9770-122dc64da064", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111224" + }, + { + "value-name": "topology-node-local-id", + "value": "111224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2aec8937-329a-481f-9aed-43ffc139d20e", + "owned-node-edge-point": [ + { + "uuid": "7a1cc47e-9f4a-4c28-8397-38b67388fee6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111225" + }, + { + "value-name": "topology-node-local-id", + "value": "111225" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a0f08a0a-b9ae-4399-8fd4-04ed06aba77e", + "owned-node-edge-point": [ + { + "uuid": "6d469158-a11e-415a-ac36-58e095772f2b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111226" + }, + { + "value-name": "topology-node-local-id", + "value": "111226" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "801fcec6-8d76-4d35-a1b2-32c58603c5fe", + "owned-node-edge-point": [ + { + "uuid": "3f29c99d-c5cd-45e4-a27c-77c434ad2a96", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111227" + }, + { + "value-name": "topology-node-local-id", + "value": "111227" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1696d9f6-3da5-4986-a399-47b6d5f5b25d", + "owned-node-edge-point": [ + { + "uuid": "9682e253-6deb-4dc9-86e2-cd45bf7fd957", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111228" + }, + { + "value-name": "topology-node-local-id", + "value": "111228" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ed27c545-6b5d-492e-8a11-440068e39f8b", + "owned-node-edge-point": [ + { + "uuid": "7b6f0ddd-dda6-42bc-b2d2-c427cdd04fa4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111229" + }, + { + "value-name": "topology-node-local-id", + "value": "111229" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "owned-node-edge-point": [ + { + "uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11122" + } + ] + }, + { + "uuid": "6e2dbe33-6586-4e00-8f62-49162931e0c7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11122" + }, + { + "value-name": "topology-node-local-id", + "value": "11122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5e380701-67da-4c42-94d6-cb99b1d93b59", + "owned-node-edge-point": [ + { + "uuid": "17a9d870-2971-4846-9e92-6a72121b2992", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111231" + }, + { + "value-name": "topology-node-local-id", + "value": "111231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d2d88a30-55b3-44bc-b6a8-56dbb5d34dba", + "owned-node-edge-point": [ + { + "uuid": "7f1bfe20-07ad-4d15-b63f-5104b41aba9f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111232" + }, + { + "value-name": "topology-node-local-id", + "value": "111232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7905ca9f-d417-45f5-abdb-0fcbbe2dd8fb", + "owned-node-edge-point": [ + { + "uuid": "188a8307-1da6-4dd5-b200-1add56a87512", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111233" + }, + { + "value-name": "topology-node-local-id", + "value": "111233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "91194e39-18cc-4b6d-ae26-f76e65b86c4f", + "owned-node-edge-point": [ + { + "uuid": "ee13da13-a467-4d6e-ab2a-b7f4f24f1c14", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111234" + }, + { + "value-name": "topology-node-local-id", + "value": "111234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7758ca7c-5f72-489c-9ef0-e64de6b9296d", + "owned-node-edge-point": [ + { + "uuid": "b9ec88c9-bff3-4cab-82b1-62d4e344b917", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111235" + }, + { + "value-name": "topology-node-local-id", + "value": "111235" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3294f5cb-d6ce-4d93-aa10-eac05088b3b9", + "owned-node-edge-point": [ + { + "uuid": "dd8435e7-0543-4e53-9a56-65cff8fce192", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111236" + }, + { + "value-name": "topology-node-local-id", + "value": "111236" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5094af70-7909-42db-859f-ef744711f997", + "owned-node-edge-point": [ + { + "uuid": "8112e768-7075-4a69-80ea-2de8d0096748", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111237" + }, + { + "value-name": "topology-node-local-id", + "value": "111237" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "09b366de-70da-4da0-a79d-d15e79a16493", + "owned-node-edge-point": [ + { + "uuid": "f3b609c5-d97f-495f-8246-c8a33b676333", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111238" + }, + { + "value-name": "topology-node-local-id", + "value": "111238" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a054f993-a259-43c1-8ae2-ca0b6e218ed2", + "owned-node-edge-point": [ + { + "uuid": "eb1e82ba-6340-466c-bd27-5af4d2f908fe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111239" + }, + { + "value-name": "topology-node-local-id", + "value": "111239" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "owned-node-edge-point": [ + { + "uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11123" + } + ] + }, + { + "uuid": "f1e4e9e2-2277-487b-b492-9cda176095aa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11123" + }, + { + "value-name": "topology-node-local-id", + "value": "11123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "502c6334-c4c8-4341-b611-c23a72242e5a", + "owned-node-edge-point": [ + { + "uuid": "8aea6c2a-bbc7-483e-b978-c47f4b46674a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111241" + }, + { + "value-name": "topology-node-local-id", + "value": "111241" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "82e34800-b2ae-4004-9521-13ba7ab3e0b7", + "owned-node-edge-point": [ + { + "uuid": "a9d97976-ffba-4f2f-861f-320805852e5b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111242" + }, + { + "value-name": "topology-node-local-id", + "value": "111242" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fb3d314f-863b-4ed9-9d10-dfb614736195", + "owned-node-edge-point": [ + { + "uuid": "261ecab3-4b28-4e93-8729-334511c29442", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111243" + }, + { + "value-name": "topology-node-local-id", + "value": "111243" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1a5b2033-6910-40a8-937b-1683a3202346", + "owned-node-edge-point": [ + { + "uuid": "0f5f8ffa-6f9b-4a82-9016-22c1a78f40df", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111244" + }, + { + "value-name": "topology-node-local-id", + "value": "111244" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f2f93446-655b-4b8b-89bc-d9f1db5f0967", + "owned-node-edge-point": [ + { + "uuid": "1976fc7d-e787-4475-b9f9-c09c935e3db3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111245" + }, + { + "value-name": "topology-node-local-id", + "value": "111245" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f51fc25c-deef-4bce-9f02-9ee4a44f36c3", + "owned-node-edge-point": [ + { + "uuid": "66ff07d3-c307-447f-990b-a6a9e7ed80cc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111246" + }, + { + "value-name": "topology-node-local-id", + "value": "111246" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "48ba133f-ef47-45ac-8954-ebfba81a0e8c", + "owned-node-edge-point": [ + { + "uuid": "1b8b9414-c2b7-4d69-a21f-56f4f58a3fd2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111247" + }, + { + "value-name": "topology-node-local-id", + "value": "111247" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d26e5f65-401a-4b27-a78c-0d4a2ea4a0f4", + "owned-node-edge-point": [ + { + "uuid": "e2666560-ed83-4f04-bee5-4caaf9e9e103", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111248" + }, + { + "value-name": "topology-node-local-id", + "value": "111248" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "80841bf1-796c-44fe-b4fb-34eeca869469", + "owned-node-edge-point": [ + { + "uuid": "334cb3df-84c4-427e-a43b-5793f604dc78", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111249" + }, + { + "value-name": "topology-node-local-id", + "value": "111249" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "owned-node-edge-point": [ + { + "uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11124" + } + ] + }, + { + "uuid": "9d9d4024-abcf-46c9-a657-4b9161561811", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11124" + }, + { + "value-name": "topology-node-local-id", + "value": "11124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a5fcdb64-45ee-4ed4-8258-bd96c9884473", + "owned-node-edge-point": [ + { + "uuid": "0057d8d7-d41e-4b0f-836a-1dbbef470ddb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0057d8d7-d41e-4b0f-836a-1dbbef470ddb" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1112" + } + ] + }, + { + "uuid": "7c71410a-1c45-4d12-9c88-c7b6a8d227d4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1112" + }, + { + "value-name": "topology-node-local-id", + "value": "1112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1e81be51-414b-43a7-a40e-d75c43f1d73b", + "owned-node-edge-point": [ + { + "uuid": "928e881d-cb61-40c8-b3e1-46b01ca3cc4b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111311" + }, + { + "value-name": "topology-node-local-id", + "value": "111311" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "96297912-d740-47b0-906c-fc08a819f019", + "owned-node-edge-point": [ + { + "uuid": "6ef477f4-9021-40f6-b4ff-499ee40adc18", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111312" + }, + { + "value-name": "topology-node-local-id", + "value": "111312" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f8ffb807-93d5-4899-a7d1-d23e3cceb922", + "owned-node-edge-point": [ + { + "uuid": "080e722c-ea97-43e4-9a7b-268d02f95172", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111313" + }, + { + "value-name": "topology-node-local-id", + "value": "111313" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "96be4b05-2fd1-4b11-9f0f-0eba75d6fc4e", + "owned-node-edge-point": [ + { + "uuid": "fa0c5f50-1611-4563-b31c-0adbbf60f799", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111314" + }, + { + "value-name": "topology-node-local-id", + "value": "111314" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "63934764-59f7-4668-8a7e-823e41554a33", + "owned-node-edge-point": [ + { + "uuid": "1a37f8d8-206c-47ee-bb7f-fd8f945f7752", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111315" + }, + { + "value-name": "topology-node-local-id", + "value": "111315" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1dac8e7c-3803-4bc0-833a-5345b835feb2", + "owned-node-edge-point": [ + { + "uuid": "a8662968-5d86-4f60-8711-755877e6d6c4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111316" + }, + { + "value-name": "topology-node-local-id", + "value": "111316" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "285889fa-dcc1-4f13-b9b8-6765040df6c8", + "owned-node-edge-point": [ + { + "uuid": "a4868366-9491-4562-9fcd-3c494afa6eea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111317" + }, + { + "value-name": "topology-node-local-id", + "value": "111317" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "457d44b3-da9f-47b3-9216-be3480072e6d", + "owned-node-edge-point": [ + { + "uuid": "777f96b4-d14a-43ac-badc-2dfab6300ab1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111318" + }, + { + "value-name": "topology-node-local-id", + "value": "111318" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cdcece91-e26a-46e6-840f-31f5fc9fcf7c", + "owned-node-edge-point": [ + { + "uuid": "5bfc95cd-6036-4b51-92d0-78a9f32aaafa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111319" + }, + { + "value-name": "topology-node-local-id", + "value": "111319" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "owned-node-edge-point": [ + { + "uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11131" + } + ] + }, + { + "uuid": "4a40a4c0-7f4a-4b05-8925-b139a74c5b0b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11131" + }, + { + "value-name": "topology-node-local-id", + "value": "11131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3065a927-6b18-4ae4-a9f8-d4ab28e1edae", + "owned-node-edge-point": [ + { + "uuid": "7f9c47d3-aaf9-4f5f-a690-45bbc46c4126", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111321" + }, + { + "value-name": "topology-node-local-id", + "value": "111321" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5fab353a-20ef-4339-ae78-45edbeddb481", + "owned-node-edge-point": [ + { + "uuid": "25232d12-390f-4403-a9f6-5495e11d635e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111322" + }, + { + "value-name": "topology-node-local-id", + "value": "111322" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6ca8b2f7-893a-48bd-beaf-6971256026fa", + "owned-node-edge-point": [ + { + "uuid": "9c725368-34fb-4257-9536-7b563a9641d1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111323" + }, + { + "value-name": "topology-node-local-id", + "value": "111323" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e04fe904-5716-4807-a312-08b73d7ecec4", + "owned-node-edge-point": [ + { + "uuid": "b8e226c0-cb50-4623-905e-325559de3f6c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111324" + }, + { + "value-name": "topology-node-local-id", + "value": "111324" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "45b84a0b-ac88-4bb2-af9a-b157b6a258a2", + "owned-node-edge-point": [ + { + "uuid": "d1568846-7e77-4e89-9d58-2135ac5000cc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111325" + }, + { + "value-name": "topology-node-local-id", + "value": "111325" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cbcec596-e18d-4519-b564-709587dd5a7f", + "owned-node-edge-point": [ + { + "uuid": "5843bf67-de5e-4899-8bb1-15c6b8499a7a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111326" + }, + { + "value-name": "topology-node-local-id", + "value": "111326" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d0230f40-8c9f-4028-9889-ff326a6b63a9", + "owned-node-edge-point": [ + { + "uuid": "f4a53bf8-5277-4b64-bbf8-fb0abb3955e3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111327" + }, + { + "value-name": "topology-node-local-id", + "value": "111327" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "78b24f81-ecbb-4507-98bf-663b594d92d1", + "owned-node-edge-point": [ + { + "uuid": "a2f9fa99-c8e5-435d-b45c-d9c923757922", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111328" + }, + { + "value-name": "topology-node-local-id", + "value": "111328" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b689aa8e-564c-456f-ab8e-ad57a573f595", + "owned-node-edge-point": [ + { + "uuid": "221e49bc-3107-49c7-8b75-c1dac74388d2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111329" + }, + { + "value-name": "topology-node-local-id", + "value": "111329" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "owned-node-edge-point": [ + { + "uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11132" + } + ] + }, + { + "uuid": "1ee11a60-c22c-4c29-b680-a1b16e7a4eea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11132" + }, + { + "value-name": "topology-node-local-id", + "value": "11132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "add622ea-e878-4908-a30e-4b7f6f43096c", + "owned-node-edge-point": [ + { + "uuid": "2ae70964-6f51-4afa-9514-3e13348b9d7b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111331" + }, + { + "value-name": "topology-node-local-id", + "value": "111331" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b2822fa9-d0ce-470e-8c6a-30e4ea86f5d0", + "owned-node-edge-point": [ + { + "uuid": "f56d3497-d225-4a0f-addd-3fcd818b8bbf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111332" + }, + { + "value-name": "topology-node-local-id", + "value": "111332" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "859a1690-c10f-406a-b3de-ced8b50c2e95", + "owned-node-edge-point": [ + { + "uuid": "9054f662-c998-4638-86db-f3f085c467bd", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111333" + }, + { + "value-name": "topology-node-local-id", + "value": "111333" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d001c4c0-bf20-4619-975d-ab830831dc97", + "owned-node-edge-point": [ + { + "uuid": "2e9e7be3-7b18-4820-b50c-4b99e85a4853", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111334" + }, + { + "value-name": "topology-node-local-id", + "value": "111334" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ffef98fc-1277-463c-a4c8-6fffaae428bb", + "owned-node-edge-point": [ + { + "uuid": "1f815d11-7102-4bd8-bfec-d9fd5f30ccc9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111335" + }, + { + "value-name": "topology-node-local-id", + "value": "111335" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b8fe4063-fa05-4efb-ab6c-e81202e6768f", + "owned-node-edge-point": [ + { + "uuid": "9b1aca5a-75e7-4337-a38d-00333d900177", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111336" + }, + { + "value-name": "topology-node-local-id", + "value": "111336" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "698d9d53-9ac3-4e5f-b2b8-9ca1043e3d4e", + "owned-node-edge-point": [ + { + "uuid": "fb63ab91-91ca-4ea8-a3ef-d5ae2cd6a25d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111337" + }, + { + "value-name": "topology-node-local-id", + "value": "111337" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4fe25573-5b3e-48f9-a9fb-ce833092dd3c", + "owned-node-edge-point": [ + { + "uuid": "bb33d09e-c4c7-4fbd-8f7e-56f86ee53ec2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111338" + }, + { + "value-name": "topology-node-local-id", + "value": "111338" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bdab4f44-1c45-408b-8bcc-f638a116f942", + "owned-node-edge-point": [ + { + "uuid": "eba9d360-e7d9-43e9-bcae-b958dc5073d5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111339" + }, + { + "value-name": "topology-node-local-id", + "value": "111339" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "owned-node-edge-point": [ + { + "uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11133" + } + ] + }, + { + "uuid": "8574e8b4-216f-423d-9658-c1bf3dfbd7d1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11133" + }, + { + "value-name": "topology-node-local-id", + "value": "11133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "669b54c7-b688-4cb3-833c-8a6198cff961", + "owned-node-edge-point": [ + { + "uuid": "45658693-cdb1-4d5e-baa3-657a08f9589b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111341" + }, + { + "value-name": "topology-node-local-id", + "value": "111341" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "09433b1a-b9f5-44d7-accc-94914a279855", + "owned-node-edge-point": [ + { + "uuid": "ad459c9b-ee47-45d1-9336-1d8066d4e9d5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111342" + }, + { + "value-name": "topology-node-local-id", + "value": "111342" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1802adb0-aa2a-4b53-a2b1-5bb324f13421", + "owned-node-edge-point": [ + { + "uuid": "e6f37ebb-760e-4a18-a994-a0ad0560241b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111343" + }, + { + "value-name": "topology-node-local-id", + "value": "111343" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8af42bcf-584a-4e1a-a2d7-03d2a16a00d7", + "owned-node-edge-point": [ + { + "uuid": "4f3ccf37-5394-4b1f-954d-75a612c9cbc5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111344" + }, + { + "value-name": "topology-node-local-id", + "value": "111344" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cc5aa763-a10d-4602-995d-1cf922741a01", + "owned-node-edge-point": [ + { + "uuid": "3e8d42c8-f7e5-4357-bca5-73a6525ccb11", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111345" + }, + { + "value-name": "topology-node-local-id", + "value": "111345" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8de1c58b-8caf-473f-b508-9b62efc3453b", + "owned-node-edge-point": [ + { + "uuid": "7c03442f-c27b-4446-8a0d-777b8b591880", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111346" + }, + { + "value-name": "topology-node-local-id", + "value": "111346" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "44b2827f-cc49-4835-9a27-3bbe683134f9", + "owned-node-edge-point": [ + { + "uuid": "1c770821-2798-4fe8-aa9d-ca4787e241c3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111347" + }, + { + "value-name": "topology-node-local-id", + "value": "111347" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7e04d95e-941e-4c31-a9d3-67c3129f1a18", + "owned-node-edge-point": [ + { + "uuid": "ef271184-de07-4025-affe-0c4be08426bc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111348" + }, + { + "value-name": "topology-node-local-id", + "value": "111348" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "75b6c4d6-4e66-4f89-a736-2a33deff70a0", + "owned-node-edge-point": [ + { + "uuid": "4cfd5a6c-526f-42b5-9876-b6ec74e931e4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-111349" + }, + { + "value-name": "topology-node-local-id", + "value": "111349" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "owned-node-edge-point": [ + { + "uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11134" + } + ] + }, + { + "uuid": "f1281237-d236-42f0-a3f8-6098efa289d9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11134" + }, + { + "value-name": "topology-node-local-id", + "value": "11134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3baaef23-42ba-4324-942c-771c19190b59", + "owned-node-edge-point": [ + { + "uuid": "405986ff-82f7-4799-880d-9491886a3e9b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "405986ff-82f7-4799-880d-9491886a3e9b" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1113" + } + ] + }, + { + "uuid": "a6007200-0012-4bed-b0fa-c25b39506e71", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1113" + }, + { + "value-name": "topology-node-local-id", + "value": "1113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1117f523-34be-444b-a390-a39256fd4bce", + "owned-node-edge-point": [ + { + "uuid": "d72009ee-26ee-499a-9e6b-3436b42684bf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "d72009ee-26ee-499a-9e6b-3436b42684bf" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-CU-UP-111" + } + ] + }, + { + "uuid": "16ae8c52-b431-4c83-838d-0f3b7d914034", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-CU-UP-111" + }, + { + "value-name": "topology-node-local-id", + "value": "111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-cu-up-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a0d5f8a9-a450-4d3e-9ced-4fc2e292c0cc", + "owned-node-edge-point": [ + { + "uuid": "ec2cc46a-110a-4e16-8891-cd2d93bebe7c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112111" + }, + { + "value-name": "topology-node-local-id", + "value": "112111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ee7f10c1-1906-46b6-80e9-827fb3c9375d", + "owned-node-edge-point": [ + { + "uuid": "7e394901-8e43-49a7-ac1d-14725f1b3532", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112112" + }, + { + "value-name": "topology-node-local-id", + "value": "112112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dd9bad7f-06e6-4305-8601-799c5f9bf5e9", + "owned-node-edge-point": [ + { + "uuid": "c8bbd649-8d02-4e2b-87a0-38de524150d2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112113" + }, + { + "value-name": "topology-node-local-id", + "value": "112113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bb637622-605a-4693-ba95-1812c4db35eb", + "owned-node-edge-point": [ + { + "uuid": "f3c92575-25a3-482e-8a51-91feb601425f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112114" + }, + { + "value-name": "topology-node-local-id", + "value": "112114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6b4baa52-2d5f-4ea5-bb13-d6009b53dd20", + "owned-node-edge-point": [ + { + "uuid": "cd01bc18-075f-4eb7-a483-fddf15bf4673", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112115" + }, + { + "value-name": "topology-node-local-id", + "value": "112115" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1878f358-dd39-458b-b8dc-571b4d72e0de", + "owned-node-edge-point": [ + { + "uuid": "05499553-3b6e-43fa-b268-8865d4ba010c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112116" + }, + { + "value-name": "topology-node-local-id", + "value": "112116" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "68713d55-1194-4505-8d06-9b5d61858459", + "owned-node-edge-point": [ + { + "uuid": "031629d7-caea-4195-8d39-23ea40c0b409", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112117" + }, + { + "value-name": "topology-node-local-id", + "value": "112117" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "28fe4699-00de-496f-8808-645442c26ae1", + "owned-node-edge-point": [ + { + "uuid": "71945874-5d9b-463c-b144-34c945f53524", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112118" + }, + { + "value-name": "topology-node-local-id", + "value": "112118" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "70cbd73e-88dc-42b4-a81e-5b9ce4fab568", + "owned-node-edge-point": [ + { + "uuid": "679c8fbf-9c5f-4308-b8f7-b4a38b3a5971", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112119" + }, + { + "value-name": "topology-node-local-id", + "value": "112119" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "owned-node-edge-point": [ + { + "uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11211" + } + ] + }, + { + "uuid": "540ddc2e-de9d-4b6f-9dbe-ba924eefb90e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11211" + }, + { + "value-name": "topology-node-local-id", + "value": "11211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "761a6cef-9fde-474a-b9b3-b2291afd1a4c", + "owned-node-edge-point": [ + { + "uuid": "6302e0b4-5cb3-4c8f-a85f-41bb7ef791e6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112121" + }, + { + "value-name": "topology-node-local-id", + "value": "112121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f4e01a38-045b-4c92-aa35-81905fe7a493", + "owned-node-edge-point": [ + { + "uuid": "7d4c72c2-aa9c-4e83-acc2-3e300fcc516d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112122" + }, + { + "value-name": "topology-node-local-id", + "value": "112122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "51e55e78-6162-4a36-9bc5-c47875e36833", + "owned-node-edge-point": [ + { + "uuid": "01509186-d556-4d39-b58f-13fd42c14769", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112123" + }, + { + "value-name": "topology-node-local-id", + "value": "112123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d238f334-9f26-492d-85d8-1188bb91215b", + "owned-node-edge-point": [ + { + "uuid": "dd5459af-7f7d-4ff9-b76d-af6517a60022", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112124" + }, + { + "value-name": "topology-node-local-id", + "value": "112124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "66c25780-7599-4752-925f-74b2e6970f75", + "owned-node-edge-point": [ + { + "uuid": "90073551-8454-49f7-8166-439bf1871a4a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112125" + }, + { + "value-name": "topology-node-local-id", + "value": "112125" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "33b4c432-eb53-498d-9697-9812fecf07d1", + "owned-node-edge-point": [ + { + "uuid": "35bd0b37-ca2c-46f5-b2b2-1a3fd7ce3b18", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112126" + }, + { + "value-name": "topology-node-local-id", + "value": "112126" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c346dea0-c2ce-47a3-97d0-4ade56683f59", + "owned-node-edge-point": [ + { + "uuid": "e9b9d184-9b8e-4484-a56d-be6947922bf3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112127" + }, + { + "value-name": "topology-node-local-id", + "value": "112127" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c1770088-7e96-4c85-9f57-cbf0854c560c", + "owned-node-edge-point": [ + { + "uuid": "cbba9eea-4c2c-4697-8126-e765340a521a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112128" + }, + { + "value-name": "topology-node-local-id", + "value": "112128" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "96f00ed0-9570-4208-8be4-56c1bd9ccca9", + "owned-node-edge-point": [ + { + "uuid": "57f22d31-4cd3-46ce-8159-a293dd5d219b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112129" + }, + { + "value-name": "topology-node-local-id", + "value": "112129" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "owned-node-edge-point": [ + { + "uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11212" + } + ] + }, + { + "uuid": "ee2d7f33-0f6c-433c-8107-7a9f7e14f097", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11212" + }, + { + "value-name": "topology-node-local-id", + "value": "11212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7d49ffdb-2a08-4c08-b2e7-235e71bcaa06", + "owned-node-edge-point": [ + { + "uuid": "3cf5481a-0b67-4750-9bf3-b75dcef00451", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112131" + }, + { + "value-name": "topology-node-local-id", + "value": "112131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9ce415e8-2d78-4bf7-add9-03f54be1afc9", + "owned-node-edge-point": [ + { + "uuid": "bd0016ea-99c9-45e6-84c5-c0e071dda1c1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112132" + }, + { + "value-name": "topology-node-local-id", + "value": "112132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "24a7ea8d-57e0-4df2-922e-e0930cce7277", + "owned-node-edge-point": [ + { + "uuid": "7e12ef00-7b3f-44bd-b751-cb1762a9b656", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112133" + }, + { + "value-name": "topology-node-local-id", + "value": "112133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4038cc7b-6c91-441f-895b-85eb23e87a98", + "owned-node-edge-point": [ + { + "uuid": "ad1c8777-6468-4fc1-b851-a935b8951f09", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112134" + }, + { + "value-name": "topology-node-local-id", + "value": "112134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0c6d78aa-168c-4e3e-9cd8-7323df55bfcb", + "owned-node-edge-point": [ + { + "uuid": "62dda12f-1da7-491d-b308-07aeee36d779", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112135" + }, + { + "value-name": "topology-node-local-id", + "value": "112135" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0ae7955c-e1e2-4802-bce0-85ee1a3c993d", + "owned-node-edge-point": [ + { + "uuid": "008bea6a-48be-4eac-93b0-8402f299a43f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112136" + }, + { + "value-name": "topology-node-local-id", + "value": "112136" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "76b58c7d-e1f5-4c90-9490-6827f9437dd1", + "owned-node-edge-point": [ + { + "uuid": "4b05c0e5-faf5-4aa5-b5ab-e9e9ee55172d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112137" + }, + { + "value-name": "topology-node-local-id", + "value": "112137" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b8cbb6dd-b27c-462e-a712-c0294d21db98", + "owned-node-edge-point": [ + { + "uuid": "fda2a800-5d6e-4d8a-ab8e-930a2c6637a4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112138" + }, + { + "value-name": "topology-node-local-id", + "value": "112138" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "846ce519-2673-4d55-8bc6-9aed6dc92d8f", + "owned-node-edge-point": [ + { + "uuid": "9a9e751c-230c-43ea-a55f-ca41b7e8c963", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112139" + }, + { + "value-name": "topology-node-local-id", + "value": "112139" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "owned-node-edge-point": [ + { + "uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11213" + } + ] + }, + { + "uuid": "be99628b-9b51-46e0-9b4b-daa17a8beab6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11213" + }, + { + "value-name": "topology-node-local-id", + "value": "11213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a0c41733-318b-458c-8444-55e8fe0223fd", + "owned-node-edge-point": [ + { + "uuid": "aa404417-c918-4844-a0ba-0403439a68b3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112141" + }, + { + "value-name": "topology-node-local-id", + "value": "112141" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2240a4db-1fa6-4430-b192-507d2ef99e7f", + "owned-node-edge-point": [ + { + "uuid": "1bacc9e7-141c-44d7-a4b1-fcb903a49193", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112142" + }, + { + "value-name": "topology-node-local-id", + "value": "112142" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "79d988c0-1d8c-4e08-99db-5f16c7c5e0c0", + "owned-node-edge-point": [ + { + "uuid": "7ca75349-dcb3-46a0-9062-efde145f6d03", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112143" + }, + { + "value-name": "topology-node-local-id", + "value": "112143" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "82abc20c-16df-480d-a38c-bee45b5a2bd8", + "owned-node-edge-point": [ + { + "uuid": "2a3deefa-4196-44bf-8207-75db42b817cc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112144" + }, + { + "value-name": "topology-node-local-id", + "value": "112144" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "acbb8388-c07d-4d2a-b5cc-33eecd7b3f4a", + "owned-node-edge-point": [ + { + "uuid": "eec3aca8-2ef8-4096-8599-0480d8509f2a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112145" + }, + { + "value-name": "topology-node-local-id", + "value": "112145" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0186ecb7-66fa-4d49-ad98-3c943af531d5", + "owned-node-edge-point": [ + { + "uuid": "eec44922-8e13-413c-bc66-61a8c9934132", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112146" + }, + { + "value-name": "topology-node-local-id", + "value": "112146" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d89395c3-e3cb-422c-8046-2684e6ab03d2", + "owned-node-edge-point": [ + { + "uuid": "222add09-5703-44de-aba2-266c04ccdf1e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112147" + }, + { + "value-name": "topology-node-local-id", + "value": "112147" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a09a47bb-bbe1-4076-bc5f-a4bacf071142", + "owned-node-edge-point": [ + { + "uuid": "78dd4fca-57e7-4810-a71b-310e852ec561", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112148" + }, + { + "value-name": "topology-node-local-id", + "value": "112148" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "693c94dd-0959-4d57-8f71-d55868aaf3f5", + "owned-node-edge-point": [ + { + "uuid": "78f29375-b02a-42f4-82d0-5e1321c993ea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112149" + }, + { + "value-name": "topology-node-local-id", + "value": "112149" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "owned-node-edge-point": [ + { + "uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11214" + } + ] + }, + { + "uuid": "86a86873-3966-437e-a211-4bd259dfd659", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11214" + }, + { + "value-name": "topology-node-local-id", + "value": "11214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "954285fc-e328-4e68-8d9f-24bfbcd5b14c", + "owned-node-edge-point": [ + { + "uuid": "cb00353c-abf3-4aab-bc50-342542554fea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "cb00353c-abf3-4aab-bc50-342542554fea" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1121" + } + ] + }, + { + "uuid": "287d983a-4cba-4980-8eab-c9c794ef76e3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1121" + }, + { + "value-name": "topology-node-local-id", + "value": "1121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e869eb1b-8895-40b9-b81c-60f16a6468c9", + "owned-node-edge-point": [ + { + "uuid": "4e4dec12-fe0c-4385-a5f8-4740f53f01da", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112211" + }, + { + "value-name": "topology-node-local-id", + "value": "112211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0deb0e3d-0590-4a4a-a9aa-0545bfd42e2e", + "owned-node-edge-point": [ + { + "uuid": "e6eb414e-e308-4ddd-8e56-89b81012016a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112212" + }, + { + "value-name": "topology-node-local-id", + "value": "112212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3efab6e1-ba90-4b31-a7ba-9eca6e629a88", + "owned-node-edge-point": [ + { + "uuid": "95d022fd-a486-40ac-9468-4ba6ee9d7daa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112213" + }, + { + "value-name": "topology-node-local-id", + "value": "112213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9a3fb4dd-440e-4852-ac56-8fbf3283bb51", + "owned-node-edge-point": [ + { + "uuid": "d7ae6cf4-1e44-4de4-879a-7496b1c60e3e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112214" + }, + { + "value-name": "topology-node-local-id", + "value": "112214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c91f27fe-0c91-4fec-a836-91daa2f7284b", + "owned-node-edge-point": [ + { + "uuid": "b775883b-d7bd-4efd-a595-a3021a8d401d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112215" + }, + { + "value-name": "topology-node-local-id", + "value": "112215" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f52b225c-9d14-42ae-bc6d-572285befb30", + "owned-node-edge-point": [ + { + "uuid": "39b9d474-1617-4306-b1c2-296077db83a2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112216" + }, + { + "value-name": "topology-node-local-id", + "value": "112216" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8c11734c-1c84-45c6-a1ec-0da0a9efed89", + "owned-node-edge-point": [ + { + "uuid": "b4a38bf7-e607-496d-abde-ac1b88f9351a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112217" + }, + { + "value-name": "topology-node-local-id", + "value": "112217" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d24fa288-8724-450d-9b82-140e22e8ea04", + "owned-node-edge-point": [ + { + "uuid": "bfa74063-aa2e-4173-967d-d7c44ac4fd0f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112218" + }, + { + "value-name": "topology-node-local-id", + "value": "112218" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "28d89fea-bd00-48ab-a20c-1edd1f404489", + "owned-node-edge-point": [ + { + "uuid": "a668f374-e2b2-4ef3-bb94-e0b56da9d9a8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112219" + }, + { + "value-name": "topology-node-local-id", + "value": "112219" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "owned-node-edge-point": [ + { + "uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11221" + } + ] + }, + { + "uuid": "a4e854a0-c9bb-442e-89f8-2eff839bf23f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11221" + }, + { + "value-name": "topology-node-local-id", + "value": "11221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0536764a-5319-4005-bf8c-ff970e47d2fd", + "owned-node-edge-point": [ + { + "uuid": "810d0a28-ee49-4a50-ab2d-53ed85add2d4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112221" + }, + { + "value-name": "topology-node-local-id", + "value": "112221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3875c113-336a-4104-bf69-0ab873940d01", + "owned-node-edge-point": [ + { + "uuid": "e61e73bf-b9fc-42d1-8af5-656b386990f3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112222" + }, + { + "value-name": "topology-node-local-id", + "value": "112222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "82e34005-bfd3-4e5a-93ca-210e1aaeb41b", + "owned-node-edge-point": [ + { + "uuid": "c6c3d674-dbac-4924-9bb4-2c5fa101ba9d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112223" + }, + { + "value-name": "topology-node-local-id", + "value": "112223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dd4c9acd-0584-4760-899a-dc5c5cf931e8", + "owned-node-edge-point": [ + { + "uuid": "d4e76098-abfc-4bb0-911c-19c61ce94f71", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112224" + }, + { + "value-name": "topology-node-local-id", + "value": "112224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dfd43d57-ab29-4aa7-87a5-04bcdf14d0e2", + "owned-node-edge-point": [ + { + "uuid": "374e2830-3550-48ec-83d9-475dfa170083", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112225" + }, + { + "value-name": "topology-node-local-id", + "value": "112225" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0199874b-8d11-4940-b837-d6aeefc0ff0d", + "owned-node-edge-point": [ + { + "uuid": "0795c2a5-7e40-4362-9642-8d76c5eebbf9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112226" + }, + { + "value-name": "topology-node-local-id", + "value": "112226" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cf0fef4b-4a91-4853-a0ca-8271654baf44", + "owned-node-edge-point": [ + { + "uuid": "d2a923b9-47bc-4d0c-99bd-e9b465a2f118", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112227" + }, + { + "value-name": "topology-node-local-id", + "value": "112227" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b042c3e7-0494-4359-83fb-b7600aadbc4f", + "owned-node-edge-point": [ + { + "uuid": "684581b3-9946-45ce-a051-23b1a7308b9b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112228" + }, + { + "value-name": "topology-node-local-id", + "value": "112228" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "96410ef7-49e5-4769-8d7c-5997f42570ab", + "owned-node-edge-point": [ + { + "uuid": "86b730a3-0137-459c-9573-2751dc14553a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112229" + }, + { + "value-name": "topology-node-local-id", + "value": "112229" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "owned-node-edge-point": [ + { + "uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11222" + } + ] + }, + { + "uuid": "f6c95752-8152-4f42-993e-c2a97d53215d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11222" + }, + { + "value-name": "topology-node-local-id", + "value": "11222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d376419b-2ba3-4b39-b79d-1896a78d69ba", + "owned-node-edge-point": [ + { + "uuid": "18ad2662-bc6a-462c-87ab-b02a192cc68d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112231" + }, + { + "value-name": "topology-node-local-id", + "value": "112231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f42300ef-2644-4fa6-9b19-425eae817b72", + "owned-node-edge-point": [ + { + "uuid": "58997b6f-e5d3-41ee-8d6c-7997962a9fa7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112232" + }, + { + "value-name": "topology-node-local-id", + "value": "112232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b8b6a0fe-c5de-490a-8ff9-938053045fe9", + "owned-node-edge-point": [ + { + "uuid": "b5f9d086-56a8-4a70-89c5-60c6906e4dd4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112233" + }, + { + "value-name": "topology-node-local-id", + "value": "112233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0b1d720d-e205-4654-853c-f1b0b87e2e95", + "owned-node-edge-point": [ + { + "uuid": "98ad2509-bda8-4b6b-ad49-e34b9d2f8350", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112234" + }, + { + "value-name": "topology-node-local-id", + "value": "112234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "07de7f79-4872-4ebf-aa65-4271758e3dcd", + "owned-node-edge-point": [ + { + "uuid": "5de188af-b7f1-4f7c-9d2c-0b0e4a7e3777", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112235" + }, + { + "value-name": "topology-node-local-id", + "value": "112235" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c9cb1da3-7d27-4894-9441-e3e514997d7a", + "owned-node-edge-point": [ + { + "uuid": "35eede29-8b4a-43aa-baa1-302d05531dd4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112236" + }, + { + "value-name": "topology-node-local-id", + "value": "112236" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "37e8f9ce-f064-48f3-9417-eb691c483b28", + "owned-node-edge-point": [ + { + "uuid": "256f1eb9-19be-4ee3-8fc5-b5718fcb9c3b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112237" + }, + { + "value-name": "topology-node-local-id", + "value": "112237" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7b9d7ca0-8a4c-413b-9d94-46701be5b29b", + "owned-node-edge-point": [ + { + "uuid": "4fdb7cba-9bac-44b3-bd7a-435424c737a8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112238" + }, + { + "value-name": "topology-node-local-id", + "value": "112238" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "acbfbb12-ca1a-4c39-ba60-b40a6b4d5ab8", + "owned-node-edge-point": [ + { + "uuid": "9fee7a26-a6a5-4ad1-ade2-f10e69a5f426", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112239" + }, + { + "value-name": "topology-node-local-id", + "value": "112239" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "owned-node-edge-point": [ + { + "uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11223" + } + ] + }, + { + "uuid": "7f29ca22-04a1-4046-8f3e-9b45b98bce8d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11223" + }, + { + "value-name": "topology-node-local-id", + "value": "11223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e5a47ba6-bd16-401a-a8fd-4f0245cd48be", + "owned-node-edge-point": [ + { + "uuid": "64b2d7b8-2a62-4785-8e55-92007078bceb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112241" + }, + { + "value-name": "topology-node-local-id", + "value": "112241" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cd6c80c3-e1a9-4656-8a5c-561bb5c2cdf5", + "owned-node-edge-point": [ + { + "uuid": "8679ee23-01aa-48a7-92ed-7fa33666e256", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112242" + }, + { + "value-name": "topology-node-local-id", + "value": "112242" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "111acfa9-d3b2-4573-a42c-8c4a346b3f6a", + "owned-node-edge-point": [ + { + "uuid": "78b1b55e-9461-4a58-8cfa-40bc02603ea8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112243" + }, + { + "value-name": "topology-node-local-id", + "value": "112243" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "65ea2151-573e-49f5-80b0-fea725989604", + "owned-node-edge-point": [ + { + "uuid": "28b22a55-879f-4fab-968c-d2311a39f40b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112244" + }, + { + "value-name": "topology-node-local-id", + "value": "112244" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b3a4b865-1fa9-4552-a88c-02badcadae50", + "owned-node-edge-point": [ + { + "uuid": "a4fa1f23-f8d9-4aa7-a6ed-5557fb892e2d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112245" + }, + { + "value-name": "topology-node-local-id", + "value": "112245" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1ea08ed7-b6f6-45c2-936a-0e65d762bc7a", + "owned-node-edge-point": [ + { + "uuid": "023f5fcc-8b66-4ea7-aa68-785facf3daa0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112246" + }, + { + "value-name": "topology-node-local-id", + "value": "112246" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "98154645-1d16-4c31-8fd8-4b2a8761c7e9", + "owned-node-edge-point": [ + { + "uuid": "806a65f7-2faa-4382-83d4-2b78e2a35b70", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112247" + }, + { + "value-name": "topology-node-local-id", + "value": "112247" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7790391a-82b1-4d8a-a58b-a35281622eeb", + "owned-node-edge-point": [ + { + "uuid": "733e295d-2bfa-4aa5-bb26-0614e04ec40f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112248" + }, + { + "value-name": "topology-node-local-id", + "value": "112248" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "abc47a3a-31e6-4fc6-aa28-b8556aa0be83", + "owned-node-edge-point": [ + { + "uuid": "d709837b-57b0-4f99-b551-6d759369002a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112249" + }, + { + "value-name": "topology-node-local-id", + "value": "112249" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "owned-node-edge-point": [ + { + "uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11224" + } + ] + }, + { + "uuid": "c6fcbfe5-4c49-4872-bb34-a364b4264ea8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11224" + }, + { + "value-name": "topology-node-local-id", + "value": "11224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3f54a6e9-27e8-47a3-9185-8dc56ac9653c", + "owned-node-edge-point": [ + { + "uuid": "89800111-66e2-454d-8dd9-800da30a4497", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "89800111-66e2-454d-8dd9-800da30a4497" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1122" + } + ] + }, + { + "uuid": "d149cb2a-d3b4-43f7-8cb4-7507df1a9daf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1122" + }, + { + "value-name": "topology-node-local-id", + "value": "1122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6c520b5f-5800-4b75-9a4a-d61f26a83157", + "owned-node-edge-point": [ + { + "uuid": "e506d681-2366-4498-9e30-ca43cfcc7b5d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112311" + }, + { + "value-name": "topology-node-local-id", + "value": "112311" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "47757693-a792-451c-9604-9f41ad778c46", + "owned-node-edge-point": [ + { + "uuid": "b09b8636-14a6-46d2-a87a-8ccca5aa4951", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112312" + }, + { + "value-name": "topology-node-local-id", + "value": "112312" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "501660db-c955-4dfc-aae3-29ae31d175e8", + "owned-node-edge-point": [ + { + "uuid": "9d6b713a-e198-4a17-9e79-eeb198e967b8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112313" + }, + { + "value-name": "topology-node-local-id", + "value": "112313" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d870865f-b8a1-4032-b031-15d6bd436246", + "owned-node-edge-point": [ + { + "uuid": "44dc7192-bbe3-4fc5-b335-3d1ab9611ec0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112314" + }, + { + "value-name": "topology-node-local-id", + "value": "112314" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "37ebb3c9-d54e-450c-a941-f70a3edc3a1f", + "owned-node-edge-point": [ + { + "uuid": "e36ea42a-741b-4828-81c8-2842e696f1aa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112315" + }, + { + "value-name": "topology-node-local-id", + "value": "112315" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "68544429-9fca-49c2-af58-326070016b2b", + "owned-node-edge-point": [ + { + "uuid": "212421d8-cb8f-44cc-8150-9505476d99fb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112316" + }, + { + "value-name": "topology-node-local-id", + "value": "112316" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d1406b7a-1bb0-4d18-a5a7-0dd1b8307490", + "owned-node-edge-point": [ + { + "uuid": "72fd61b3-a0e9-4f17-82ab-e108254c887e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112317" + }, + { + "value-name": "topology-node-local-id", + "value": "112317" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "37496e66-4b66-44b2-bed3-ea50696c3a9e", + "owned-node-edge-point": [ + { + "uuid": "86d643ca-00d0-4dc8-a85e-d19c3696d54f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112318" + }, + { + "value-name": "topology-node-local-id", + "value": "112318" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "edec476b-d32a-41c7-b4f3-82684b587979", + "owned-node-edge-point": [ + { + "uuid": "572fe831-12fb-4a25-914a-b993be62c1ff", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112319" + }, + { + "value-name": "topology-node-local-id", + "value": "112319" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "owned-node-edge-point": [ + { + "uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11231" + } + ] + }, + { + "uuid": "a916abd0-e95f-4bbc-8fb1-8414eba0b63c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11231" + }, + { + "value-name": "topology-node-local-id", + "value": "11231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "64f0e218-e532-4e58-8c38-3a170e174aa4", + "owned-node-edge-point": [ + { + "uuid": "21ee007a-8e2f-4638-8d2d-720c0156694e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112321" + }, + { + "value-name": "topology-node-local-id", + "value": "112321" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0b86cc98-c489-49cf-a2da-ebbcc6d23bd5", + "owned-node-edge-point": [ + { + "uuid": "61114f6d-e7cb-44c7-af73-1d4135025d00", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112322" + }, + { + "value-name": "topology-node-local-id", + "value": "112322" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8c45cdd3-41d1-4139-8452-569c837b68ba", + "owned-node-edge-point": [ + { + "uuid": "f47767dd-b78b-4e2a-b740-f640840dffe8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112323" + }, + { + "value-name": "topology-node-local-id", + "value": "112323" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "557fe04f-8339-485a-93ea-0c55c1c09a14", + "owned-node-edge-point": [ + { + "uuid": "6c1ca46b-2122-4ef9-a0c5-8387e8c02dfa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112324" + }, + { + "value-name": "topology-node-local-id", + "value": "112324" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cd250806-eecb-434c-be74-2962cde48cd3", + "owned-node-edge-point": [ + { + "uuid": "d9d4f048-9ed4-41f1-b311-b93d8d4d11ea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112325" + }, + { + "value-name": "topology-node-local-id", + "value": "112325" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "09752d93-52f4-4e3e-b84e-d52210673740", + "owned-node-edge-point": [ + { + "uuid": "6c42bf4d-b17e-42de-b5b4-e9ecc0acbc35", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112326" + }, + { + "value-name": "topology-node-local-id", + "value": "112326" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "99359fb6-3730-4a7d-98d8-41c48dc8cf04", + "owned-node-edge-point": [ + { + "uuid": "c58b2fab-9059-4368-92d5-e842b092d58f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112327" + }, + { + "value-name": "topology-node-local-id", + "value": "112327" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "134bbb17-db4e-4da4-9388-c08f837fa3f8", + "owned-node-edge-point": [ + { + "uuid": "37fee44e-de29-4e18-87a2-ba806e5f6c37", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112328" + }, + { + "value-name": "topology-node-local-id", + "value": "112328" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a6fceeff-d36e-4318-9c84-82f7c6439865", + "owned-node-edge-point": [ + { + "uuid": "79db82e2-d007-4263-a136-7b567f36286d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112329" + }, + { + "value-name": "topology-node-local-id", + "value": "112329" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "owned-node-edge-point": [ + { + "uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11232" + } + ] + }, + { + "uuid": "112861ed-318e-4e43-958d-25fa8bd98491", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11232" + }, + { + "value-name": "topology-node-local-id", + "value": "11232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "52507987-4d65-43d7-9ccb-316e0e2d4d4d", + "owned-node-edge-point": [ + { + "uuid": "5d194184-1381-488a-80a8-157248cb820c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112331" + }, + { + "value-name": "topology-node-local-id", + "value": "112331" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b86a18b0-6e02-40a2-a550-d9314e204591", + "owned-node-edge-point": [ + { + "uuid": "a1c7dcc6-3231-4712-b31a-e5c4d8d91dca", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112332" + }, + { + "value-name": "topology-node-local-id", + "value": "112332" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "901667bf-8890-4598-b0e0-4df3b0cc76c1", + "owned-node-edge-point": [ + { + "uuid": "bba07cab-0cf9-4886-a69c-e2e66ee52696", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112333" + }, + { + "value-name": "topology-node-local-id", + "value": "112333" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3e57fd86-e746-49bb-8d86-e918a5e43c2f", + "owned-node-edge-point": [ + { + "uuid": "a307ba33-36c3-4686-8b8e-a8fc74356eb7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112334" + }, + { + "value-name": "topology-node-local-id", + "value": "112334" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0a72ad68-d3cf-4fba-a410-95b0720b66e9", + "owned-node-edge-point": [ + { + "uuid": "bd2950f8-b904-43d9-b10b-2c5a74c2ae32", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112335" + }, + { + "value-name": "topology-node-local-id", + "value": "112335" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bc2e7c44-b13f-467f-8937-98a6132b0876", + "owned-node-edge-point": [ + { + "uuid": "7a513094-b942-4054-87f6-4e532955a474", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112336" + }, + { + "value-name": "topology-node-local-id", + "value": "112336" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c64d731b-bcac-4d1c-894c-f88b38aa5032", + "owned-node-edge-point": [ + { + "uuid": "7b8887db-ea46-484a-a0c5-df192bc8a2f4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112337" + }, + { + "value-name": "topology-node-local-id", + "value": "112337" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5a1f2d50-a4f8-407c-84c1-aa26361ef13e", + "owned-node-edge-point": [ + { + "uuid": "088160b1-f187-44eb-93ff-e8a72f5c5f93", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112338" + }, + { + "value-name": "topology-node-local-id", + "value": "112338" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9c3674ce-a771-4e9a-ac9c-0510fc254885", + "owned-node-edge-point": [ + { + "uuid": "e4a090e5-d653-4531-a5a4-ab9f4b86a747", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112339" + }, + { + "value-name": "topology-node-local-id", + "value": "112339" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "owned-node-edge-point": [ + { + "uuid": "ff886839-61cc-4a45-8195-9b42589e05ad", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11233" + } + ] + }, + { + "uuid": "c69d1672-2aa1-4f2d-87a7-33d45abf850f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11233" + }, + { + "value-name": "topology-node-local-id", + "value": "11233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2328e2e4-7fcb-4098-a8bc-287084403d6e", + "owned-node-edge-point": [ + { + "uuid": "c4b84788-3a57-4e49-b5ee-e078c1f244be", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112341" + }, + { + "value-name": "topology-node-local-id", + "value": "112341" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "60dbb04f-34c4-42f0-830a-04a0513d9529", + "owned-node-edge-point": [ + { + "uuid": "f7765e09-104d-4c12-ba52-4472b294030b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112342" + }, + { + "value-name": "topology-node-local-id", + "value": "112342" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e08189c6-cee0-4634-9114-6ca7ebf50f48", + "owned-node-edge-point": [ + { + "uuid": "d99bd977-ce12-4719-8857-14ef4449656f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112343" + }, + { + "value-name": "topology-node-local-id", + "value": "112343" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e636f9c1-0a58-4d41-99d9-bbd962cb81f1", + "owned-node-edge-point": [ + { + "uuid": "46f6c056-e607-48d6-a2c7-a77dd53d2912", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112344" + }, + { + "value-name": "topology-node-local-id", + "value": "112344" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "56bd5ce8-b29b-496e-a7d5-c2aa9a4b9e0d", + "owned-node-edge-point": [ + { + "uuid": "f09d081f-8dd6-477f-ae37-8160b8fc56a2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112345" + }, + { + "value-name": "topology-node-local-id", + "value": "112345" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1d33c967-2000-447a-b915-d17fc3b8e348", + "owned-node-edge-point": [ + { + "uuid": "a4429718-3feb-459c-94b0-3ae363532e67", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112346" + }, + { + "value-name": "topology-node-local-id", + "value": "112346" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2b9cdb90-f623-4da5-b0ca-d35101a80d23", + "owned-node-edge-point": [ + { + "uuid": "556d61ee-192f-45b1-9fa7-835f16dfea0d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112347" + }, + { + "value-name": "topology-node-local-id", + "value": "112347" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5104e70b-cf98-443a-a333-2ad99605ab6f", + "owned-node-edge-point": [ + { + "uuid": "4eef4bd6-cf96-47ac-9570-8e4d60d7315c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112348" + }, + { + "value-name": "topology-node-local-id", + "value": "112348" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3652484e-c3d8-40cd-8632-f0addbcaa350", + "owned-node-edge-point": [ + { + "uuid": "244b83ba-7ad5-42a1-beba-0ce4c1df9e80", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-112349" + }, + { + "value-name": "topology-node-local-id", + "value": "112349" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "owned-node-edge-point": [ + { + "uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-11234" + } + ] + }, + { + "uuid": "305398a1-6ba5-4859-82e3-8b6ef3ab2674", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-11234" + }, + { + "value-name": "topology-node-local-id", + "value": "11234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e16ea90d-7b26-43d6-acdc-eb3bff54b611", + "owned-node-edge-point": [ + { + "uuid": "faeceb73-24ca-4be9-9343-c4127a454359", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "faeceb73-24ca-4be9-9343-c4127a454359" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1123" + } + ] + }, + { + "uuid": "111cf35d-74d9-44b8-b971-4f526f9c0563", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1123" + }, + { + "value-name": "topology-node-local-id", + "value": "1123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "47aeebea-7de4-4119-9194-b95258797508", + "owned-node-edge-point": [ + { + "uuid": "7a4e7203-17ab-4f2f-ba43-c1b91959f255", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "7a4e7203-17ab-4f2f-ba43-c1b91959f255" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-CU-UP-112" + } + ] + }, + { + "uuid": "1b8c70a0-8e7e-4e97-b2c7-9b87bf690622", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-CU-UP-112" + }, + { + "value-name": "topology-node-local-id", + "value": "112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-cu-up-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "18dc0174-0ad2-4735-9073-bf91cb514cd8", + "owned-node-edge-point": [ + { + "uuid": "6d4937c0-34c5-44dc-bb81-324edccbaec7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "6d4937c0-34c5-44dc-bb81-324edccbaec7" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for NEAR-RT-RIC-11" + } + ] + }, + { + "uuid": "23500571-275a-4f16-9bf1-8c0ce4dee773", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "NEAR-RT-RIC-11" + }, + { + "value-name": "topology-node-local-id", + "value": "11" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:near-rt-ric-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "138a5448-6705-450a-bdf9-cf8a3a426622", + "owned-node-edge-point": [ + { + "uuid": "d2d89fa1-3fc2-4edd-97b6-ef53f1b8747a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121111" + }, + { + "value-name": "topology-node-local-id", + "value": "121111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f818ef81-563f-40be-b027-3e01ee6663f7", + "owned-node-edge-point": [ + { + "uuid": "bd9409da-2c6e-49b1-a85e-5f36d432037a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121112" + }, + { + "value-name": "topology-node-local-id", + "value": "121112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7e3e75dd-a73b-44b8-8c1c-48897ce3adf0", + "owned-node-edge-point": [ + { + "uuid": "d1cc9846-6ebf-4e1d-bc41-79c83c50ec7d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121113" + }, + { + "value-name": "topology-node-local-id", + "value": "121113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1970d3c3-d106-4039-849c-29b373b9c393", + "owned-node-edge-point": [ + { + "uuid": "6c40e253-b3b6-4138-ac3b-aedd5b335153", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121114" + }, + { + "value-name": "topology-node-local-id", + "value": "121114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a96d015b-2d61-405a-8e38-19a9e3c3bbef", + "owned-node-edge-point": [ + { + "uuid": "0445dc69-48b2-4067-a468-f264ac96c598", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121115" + }, + { + "value-name": "topology-node-local-id", + "value": "121115" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "12a43553-60ad-4c94-b517-bfa2a5cc6d2e", + "owned-node-edge-point": [ + { + "uuid": "d4764160-f9ba-4c62-99c7-99f3b9e2dc28", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121116" + }, + { + "value-name": "topology-node-local-id", + "value": "121116" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "633386a5-291d-4d58-a9dd-e0b8c4b77fef", + "owned-node-edge-point": [ + { + "uuid": "ee90b25c-3d18-449e-9a6f-857a95bba722", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121117" + }, + { + "value-name": "topology-node-local-id", + "value": "121117" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "84948772-0a93-4397-9a05-732d7a1f15c8", + "owned-node-edge-point": [ + { + "uuid": "a47fb127-aaf9-4854-aef4-626c5a9b431f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121118" + }, + { + "value-name": "topology-node-local-id", + "value": "121118" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f8091766-af71-431b-9102-b05dcaf0e5a3", + "owned-node-edge-point": [ + { + "uuid": "eb0e788c-3e3e-4206-8e17-f49b4906361b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121119" + }, + { + "value-name": "topology-node-local-id", + "value": "121119" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "owned-node-edge-point": [ + { + "uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12111" + } + ] + }, + { + "uuid": "c980be17-c3f1-4669-af78-a8a880cf599b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12111" + }, + { + "value-name": "topology-node-local-id", + "value": "12111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "40f6da77-d658-4e75-9271-0b39cfbd6518", + "owned-node-edge-point": [ + { + "uuid": "f3212e91-2fc8-4969-9552-94b3c9df3bef", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121121" + }, + { + "value-name": "topology-node-local-id", + "value": "121121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "89c6b7fb-39e3-4557-a423-d526449ae23b", + "owned-node-edge-point": [ + { + "uuid": "86adb19f-6795-4ecd-91ad-4fb13e55b12c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121122" + }, + { + "value-name": "topology-node-local-id", + "value": "121122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c427e864-b783-4a89-9bee-e151b90c53de", + "owned-node-edge-point": [ + { + "uuid": "bd37fc07-7f33-4410-b1fe-e08b8984faa7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121123" + }, + { + "value-name": "topology-node-local-id", + "value": "121123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5c4894f5-25c1-443a-aebc-f928e4c0418d", + "owned-node-edge-point": [ + { + "uuid": "f3af5900-9e6a-49d4-b488-dbdd9d6ebaa6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121124" + }, + { + "value-name": "topology-node-local-id", + "value": "121124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e860a374-2268-4aa8-9b07-9136fe2accf2", + "owned-node-edge-point": [ + { + "uuid": "f6fecdc4-72e7-4b7b-96d3-b32a0e196782", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121125" + }, + { + "value-name": "topology-node-local-id", + "value": "121125" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "501a852d-c39e-4243-a3f4-7b53b7542878", + "owned-node-edge-point": [ + { + "uuid": "19430be5-b955-4fa7-b46c-c1140384fe8f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121126" + }, + { + "value-name": "topology-node-local-id", + "value": "121126" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9113ea72-8b3f-44b2-bcd9-7e5a4949a1bb", + "owned-node-edge-point": [ + { + "uuid": "37816db4-7cd0-40d1-84c9-6fca0a787bec", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121127" + }, + { + "value-name": "topology-node-local-id", + "value": "121127" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cba2dfc3-4748-46a7-9e9d-f1a2db465004", + "owned-node-edge-point": [ + { + "uuid": "5545b7db-9ae3-4259-9d27-26a4ddc4e8ba", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121128" + }, + { + "value-name": "topology-node-local-id", + "value": "121128" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9fc5a4bf-a767-421c-9ed0-70a37120c0f9", + "owned-node-edge-point": [ + { + "uuid": "0c2dd551-279c-44bb-813e-27fecb3b323f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121129" + }, + { + "value-name": "topology-node-local-id", + "value": "121129" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "owned-node-edge-point": [ + { + "uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12112" + } + ] + }, + { + "uuid": "4285e8fd-e564-4ecc-978b-3850f34961ed", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12112" + }, + { + "value-name": "topology-node-local-id", + "value": "12112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c7b506c7-b57c-455c-b109-0c33540ee89d", + "owned-node-edge-point": [ + { + "uuid": "803adac9-f71e-4d66-a809-a8b5a1ed323f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121131" + }, + { + "value-name": "topology-node-local-id", + "value": "121131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e47e1434-d7a0-4df6-ada5-547dff691579", + "owned-node-edge-point": [ + { + "uuid": "31216bee-8e80-4e17-99af-25bde6724c3d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121132" + }, + { + "value-name": "topology-node-local-id", + "value": "121132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f9fb2cda-93a1-405f-bcd4-d61fb44eec04", + "owned-node-edge-point": [ + { + "uuid": "fcd5955b-443d-4d1a-9d83-13e00125aa38", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121133" + }, + { + "value-name": "topology-node-local-id", + "value": "121133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1dc08c3c-a7ee-485b-a2cd-554e08f9a7f6", + "owned-node-edge-point": [ + { + "uuid": "f01b930e-cbf1-4e94-bd97-30480a72212b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121134" + }, + { + "value-name": "topology-node-local-id", + "value": "121134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "61c49431-1df9-4ece-ad4d-a86b412d338b", + "owned-node-edge-point": [ + { + "uuid": "ad10b930-069a-4f04-a0da-0b06c39675c9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121135" + }, + { + "value-name": "topology-node-local-id", + "value": "121135" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0490022c-7f68-446b-b3ca-b98bdffb3a3a", + "owned-node-edge-point": [ + { + "uuid": "a8aa6c22-238f-49ef-b0de-098285785e70", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121136" + }, + { + "value-name": "topology-node-local-id", + "value": "121136" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6c416d99-74ea-4905-9686-f9df53393939", + "owned-node-edge-point": [ + { + "uuid": "21038aeb-c3c8-4462-9d84-8994baf98dfb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121137" + }, + { + "value-name": "topology-node-local-id", + "value": "121137" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ce61d68d-ad26-4ebc-800e-1d4576a65dd7", + "owned-node-edge-point": [ + { + "uuid": "0853543a-e3c1-4d05-875e-5510286ed005", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121138" + }, + { + "value-name": "topology-node-local-id", + "value": "121138" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1279b0e8-54ab-4f52-9192-512790b0b695", + "owned-node-edge-point": [ + { + "uuid": "218339d1-3c3d-44db-8982-33d23f56b76b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121139" + }, + { + "value-name": "topology-node-local-id", + "value": "121139" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "owned-node-edge-point": [ + { + "uuid": "0034be11-9da1-4577-a30d-5c8c602cd682", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12113" + } + ] + }, + { + "uuid": "640ff8a9-4d8d-4b29-869f-535f2c14528c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12113" + }, + { + "value-name": "topology-node-local-id", + "value": "12113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b59ecf42-cffa-4175-9b2d-813c8d368cb0", + "owned-node-edge-point": [ + { + "uuid": "dfccb715-a380-4a4c-bf45-bba0a5830257", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121141" + }, + { + "value-name": "topology-node-local-id", + "value": "121141" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b6392841-bf67-4eed-a3ab-49fcce7f2452", + "owned-node-edge-point": [ + { + "uuid": "362c5791-f06c-491e-a269-f3e6622ab7a2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121142" + }, + { + "value-name": "topology-node-local-id", + "value": "121142" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "701a2651-5974-4725-860e-58b10944f8f2", + "owned-node-edge-point": [ + { + "uuid": "f83e2e94-832e-4220-8a36-9b065c4ecf33", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121143" + }, + { + "value-name": "topology-node-local-id", + "value": "121143" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "61cfa1b7-789f-444e-a274-8e6f33b23a16", + "owned-node-edge-point": [ + { + "uuid": "45acdc6f-1fc0-4049-8e44-8aac863f9ea5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121144" + }, + { + "value-name": "topology-node-local-id", + "value": "121144" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "84317fbe-c519-4d57-939b-b2adac79a825", + "owned-node-edge-point": [ + { + "uuid": "db0fe5a5-b577-4dbb-ac05-2377d1fb126f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121145" + }, + { + "value-name": "topology-node-local-id", + "value": "121145" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ecc85c6d-c076-4672-9c5c-c4cc0225d21d", + "owned-node-edge-point": [ + { + "uuid": "b314c284-3e12-4549-81a8-ba96a8fb2209", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121146" + }, + { + "value-name": "topology-node-local-id", + "value": "121146" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c8090029-7f4f-427d-a426-2289a5b40e51", + "owned-node-edge-point": [ + { + "uuid": "d92c5a4e-6801-49d0-ba4f-7c0631a2440c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121147" + }, + { + "value-name": "topology-node-local-id", + "value": "121147" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "56d916b4-fe54-4aaf-95c1-e3f80f46d01d", + "owned-node-edge-point": [ + { + "uuid": "5d2dfecf-6049-41e5-9e83-a0fb2f6fff31", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121148" + }, + { + "value-name": "topology-node-local-id", + "value": "121148" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "888e2faf-b778-4f3b-ae0b-ab2c66c2503f", + "owned-node-edge-point": [ + { + "uuid": "830862a4-55e8-43c0-97f8-d44f5971ffed", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121149" + }, + { + "value-name": "topology-node-local-id", + "value": "121149" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "owned-node-edge-point": [ + { + "uuid": "f131cd90-d060-4488-8414-a072759b2bc0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12114" + } + ] + }, + { + "uuid": "018ef8a1-0e3d-4af9-ac40-15bbf9b0ea37", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12114" + }, + { + "value-name": "topology-node-local-id", + "value": "12114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e132f2b2-f9cd-4454-a4be-5e1fb4295945", + "owned-node-edge-point": [ + { + "uuid": "de265ac8-e4d5-40bd-8a75-bd415c19c1ea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "de265ac8-e4d5-40bd-8a75-bd415c19c1ea" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1211" + } + ] + }, + { + "uuid": "307c9859-faf6-4016-8b5f-145b98b46ff5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1211" + }, + { + "value-name": "topology-node-local-id", + "value": "1211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a25bb56c-e6b1-43d2-be94-7aeae7777274", + "owned-node-edge-point": [ + { + "uuid": "d53eb429-ef27-4128-bb12-fa3510dfeed3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121211" + }, + { + "value-name": "topology-node-local-id", + "value": "121211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "da18cd18-48b4-4c41-ab54-d0c0d2ca2e84", + "owned-node-edge-point": [ + { + "uuid": "60a848fc-cd4e-4ec6-b5c4-a1c0c46f348b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121212" + }, + { + "value-name": "topology-node-local-id", + "value": "121212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dcd48922-db43-4c7c-b6ef-f045e4851d5a", + "owned-node-edge-point": [ + { + "uuid": "54c6dc5c-01d1-4d76-bf34-d5b527a8fa77", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121213" + }, + { + "value-name": "topology-node-local-id", + "value": "121213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "22c1d074-1cd4-4159-825d-7f864f189fc3", + "owned-node-edge-point": [ + { + "uuid": "5e821cd7-5d4d-4e55-83ed-ca29b1d543b6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121214" + }, + { + "value-name": "topology-node-local-id", + "value": "121214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ec76080d-f027-4bdf-8c5f-98ad06257eae", + "owned-node-edge-point": [ + { + "uuid": "43e55468-3ea0-4dbd-8c48-1346f10d5ce7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121215" + }, + { + "value-name": "topology-node-local-id", + "value": "121215" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e1695cb0-51f5-4e6c-a927-0aa1d389440d", + "owned-node-edge-point": [ + { + "uuid": "17948b4f-bcf4-42d0-9652-8360de865656", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121216" + }, + { + "value-name": "topology-node-local-id", + "value": "121216" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2dda1cc6-2aa6-45dd-ba2a-55309a4702f8", + "owned-node-edge-point": [ + { + "uuid": "18746037-d2fc-4f07-ae9e-8e4167025cc7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121217" + }, + { + "value-name": "topology-node-local-id", + "value": "121217" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6b05a629-01fa-4ebc-a0cc-96421172ce68", + "owned-node-edge-point": [ + { + "uuid": "c8dc5971-be29-461e-ba5a-5591019fb4e7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121218" + }, + { + "value-name": "topology-node-local-id", + "value": "121218" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "af0287f7-a52c-4cfd-811e-fe68661b120b", + "owned-node-edge-point": [ + { + "uuid": "1bdc8864-5036-4d9c-86f0-a5d918044a57", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121219" + }, + { + "value-name": "topology-node-local-id", + "value": "121219" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "owned-node-edge-point": [ + { + "uuid": "c1c75b58-6982-4294-ad82-4c15dc833221", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12121" + } + ] + }, + { + "uuid": "8e11f665-7f83-4884-bc6d-1003a7c51ee2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12121" + }, + { + "value-name": "topology-node-local-id", + "value": "12121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7c2f9867-33c3-4f9c-8581-00ef032e912a", + "owned-node-edge-point": [ + { + "uuid": "aae4399a-b2ca-4d7a-9d8a-39fe3e455ece", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121221" + }, + { + "value-name": "topology-node-local-id", + "value": "121221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9c4530f9-6248-499a-bf08-f317c6116369", + "owned-node-edge-point": [ + { + "uuid": "37c4f27e-74f6-44cd-b5d7-cfe1e0aa39f3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121222" + }, + { + "value-name": "topology-node-local-id", + "value": "121222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "41859340-2454-4459-a668-15b718ceb816", + "owned-node-edge-point": [ + { + "uuid": "dec8377a-4af2-4d3c-9146-14fb9132dd0c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121223" + }, + { + "value-name": "topology-node-local-id", + "value": "121223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3edc0fa8-15a9-4091-a735-b67f6c96eb35", + "owned-node-edge-point": [ + { + "uuid": "0d5d087e-20d3-4858-bbd6-a6eee600f25a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121224" + }, + { + "value-name": "topology-node-local-id", + "value": "121224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0d07dd12-0b29-4e2c-9fcb-f57d818b82c4", + "owned-node-edge-point": [ + { + "uuid": "aa8c1ce6-0b65-4f9a-a90b-3927f384c7b2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121225" + }, + { + "value-name": "topology-node-local-id", + "value": "121225" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "331f1092-9686-42e5-b88b-74ef33d61eb9", + "owned-node-edge-point": [ + { + "uuid": "ec9afd40-948a-4df3-b929-182f2ac45112", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121226" + }, + { + "value-name": "topology-node-local-id", + "value": "121226" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "533a2e70-bfc0-478b-b4fb-ccc1e004a5de", + "owned-node-edge-point": [ + { + "uuid": "953ca96d-c7d9-4797-8367-a297d5c56486", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121227" + }, + { + "value-name": "topology-node-local-id", + "value": "121227" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c962db4b-cb90-4b9b-871a-53813af7d09e", + "owned-node-edge-point": [ + { + "uuid": "3fbb02ff-795c-4839-9ecb-cd2eec80cbb9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121228" + }, + { + "value-name": "topology-node-local-id", + "value": "121228" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b4df5bfe-cf22-4541-8e72-bd1f48acd606", + "owned-node-edge-point": [ + { + "uuid": "3e86c632-91b9-4e6c-813b-fc9dd8e08628", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121229" + }, + { + "value-name": "topology-node-local-id", + "value": "121229" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "owned-node-edge-point": [ + { + "uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12122" + } + ] + }, + { + "uuid": "e5cae3a1-bde8-4b1a-adab-ba9956895954", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12122" + }, + { + "value-name": "topology-node-local-id", + "value": "12122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "576eae59-fe86-4064-ab3b-28f3f25fd20f", + "owned-node-edge-point": [ + { + "uuid": "d59304e0-eab6-4a8b-acfb-bc4baee812df", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121231" + }, + { + "value-name": "topology-node-local-id", + "value": "121231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cf3f900b-e5ba-4e63-a48b-14ec4c602c33", + "owned-node-edge-point": [ + { + "uuid": "16550ad2-e813-4490-b049-39c4f38c260c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121232" + }, + { + "value-name": "topology-node-local-id", + "value": "121232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d59ee6e4-a5aa-4c7a-ab4d-8ad8d69a41a5", + "owned-node-edge-point": [ + { + "uuid": "2d308784-192a-4866-bfff-9dcd9e28d0a3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121233" + }, + { + "value-name": "topology-node-local-id", + "value": "121233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "23d2d03d-3f5f-4341-b87c-40cd2f205e39", + "owned-node-edge-point": [ + { + "uuid": "e719449e-8562-415e-98cf-49780796d75e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121234" + }, + { + "value-name": "topology-node-local-id", + "value": "121234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b4a3f3ca-0128-4b17-89c6-1c396c368e36", + "owned-node-edge-point": [ + { + "uuid": "b62b1dcd-46e4-499f-aa58-b30dfd598e7d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121235" + }, + { + "value-name": "topology-node-local-id", + "value": "121235" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8dd8acf8-d26a-4411-bdd8-d9b3ec84a7df", + "owned-node-edge-point": [ + { + "uuid": "2eff39b4-24ee-41cf-9b57-477ca7ae0239", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121236" + }, + { + "value-name": "topology-node-local-id", + "value": "121236" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b726a239-5e8e-4298-a7c8-58cbff36cf51", + "owned-node-edge-point": [ + { + "uuid": "9129ed9d-0f6c-4516-bd01-b9e677671b7f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121237" + }, + { + "value-name": "topology-node-local-id", + "value": "121237" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4e706fab-df72-4fd1-8949-d9a9f719b0b8", + "owned-node-edge-point": [ + { + "uuid": "dfd44d00-b2b7-44c6-a58a-eba757683372", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121238" + }, + { + "value-name": "topology-node-local-id", + "value": "121238" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3b6a6abc-6152-4b72-9b58-ac02071e1bbf", + "owned-node-edge-point": [ + { + "uuid": "18d290e1-1049-434e-9272-7447d4121940", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121239" + }, + { + "value-name": "topology-node-local-id", + "value": "121239" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "owned-node-edge-point": [ + { + "uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12123" + } + ] + }, + { + "uuid": "0f801fa1-ead7-41e8-ab93-a4602d27c83f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12123" + }, + { + "value-name": "topology-node-local-id", + "value": "12123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9edbda2b-95be-4952-b38b-f5579770048c", + "owned-node-edge-point": [ + { + "uuid": "8870caa1-0b5a-436d-8c97-793fe8378dcb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121241" + }, + { + "value-name": "topology-node-local-id", + "value": "121241" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b9de758c-570e-4054-a53b-f493ea03a4a1", + "owned-node-edge-point": [ + { + "uuid": "32ee3507-8acf-457c-bc25-2f346bb8297c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121242" + }, + { + "value-name": "topology-node-local-id", + "value": "121242" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6ceaebf6-eac3-41bd-91a1-e00f267c4cc3", + "owned-node-edge-point": [ + { + "uuid": "66bfa562-e160-4813-aed9-442d853c4b92", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121243" + }, + { + "value-name": "topology-node-local-id", + "value": "121243" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0d65aae0-fef3-4d65-adab-9e189aaa0947", + "owned-node-edge-point": [ + { + "uuid": "62b00701-0aea-4d69-b3c0-95a517c366f3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121244" + }, + { + "value-name": "topology-node-local-id", + "value": "121244" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0a6551fb-ccaa-4dce-bd74-fd632f033266", + "owned-node-edge-point": [ + { + "uuid": "9f1525dc-5e6a-41fa-9688-c0ba55639eea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121245" + }, + { + "value-name": "topology-node-local-id", + "value": "121245" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ac8eb628-58a7-4695-a273-d824fc18d46b", + "owned-node-edge-point": [ + { + "uuid": "2a1f9d31-b0cf-4e64-9c58-dd8c7553a843", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121246" + }, + { + "value-name": "topology-node-local-id", + "value": "121246" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "804757cd-3662-4541-a1d8-c800e92235da", + "owned-node-edge-point": [ + { + "uuid": "36b71d32-bae5-4082-abe1-926c97a44331", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121247" + }, + { + "value-name": "topology-node-local-id", + "value": "121247" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5cc7b945-e659-405d-89c7-bd3f61d6ff6c", + "owned-node-edge-point": [ + { + "uuid": "2e4b3313-74b6-439a-9f02-6da9ab0407bb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121248" + }, + { + "value-name": "topology-node-local-id", + "value": "121248" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "72a26163-ed55-4f4c-b8d9-86d776e3fd3b", + "owned-node-edge-point": [ + { + "uuid": "c233fef1-6b33-434b-86a6-bb107f5675cb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121249" + }, + { + "value-name": "topology-node-local-id", + "value": "121249" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "owned-node-edge-point": [ + { + "uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12124" + } + ] + }, + { + "uuid": "66dc05da-e4f9-4c83-b563-56cde5ab3872", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12124" + }, + { + "value-name": "topology-node-local-id", + "value": "12124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d844e84c-8af8-45bb-9328-2b09ae94d154", + "owned-node-edge-point": [ + { + "uuid": "e2afec55-1659-47d7-8517-a49cd0ef4a07", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "e2afec55-1659-47d7-8517-a49cd0ef4a07" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1212" + } + ] + }, + { + "uuid": "963181b4-8b05-478f-a49c-6c45315d59df", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1212" + }, + { + "value-name": "topology-node-local-id", + "value": "1212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "13d8f783-c6bd-40b3-a7f7-28c927c8e60d", + "owned-node-edge-point": [ + { + "uuid": "4d41ed11-7f7b-49f2-8cac-dcdd6010b424", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121311" + }, + { + "value-name": "topology-node-local-id", + "value": "121311" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2baa2fed-ff64-4340-8e65-278cb0409ac4", + "owned-node-edge-point": [ + { + "uuid": "d91acf6e-de7c-436a-86a6-ae836f22336f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121312" + }, + { + "value-name": "topology-node-local-id", + "value": "121312" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6244668c-b9ae-4577-846a-39f05a2fedb4", + "owned-node-edge-point": [ + { + "uuid": "5d48d601-20bf-4e8a-8941-7eb4293bc957", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121313" + }, + { + "value-name": "topology-node-local-id", + "value": "121313" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dda7ff86-f2b5-41c2-bbaa-cc77ced19744", + "owned-node-edge-point": [ + { + "uuid": "9f4bc0aa-cb42-4a73-99ff-1112546a2bfe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121314" + }, + { + "value-name": "topology-node-local-id", + "value": "121314" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "35720928-e688-465c-ab8b-e357011713a2", + "owned-node-edge-point": [ + { + "uuid": "4538fda9-c026-4ff0-86e4-191e36c5ad4b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121315" + }, + { + "value-name": "topology-node-local-id", + "value": "121315" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cf505d1e-888c-4899-9d1c-231cfcd773dd", + "owned-node-edge-point": [ + { + "uuid": "87b5537d-eece-4703-8396-ea1467c25536", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121316" + }, + { + "value-name": "topology-node-local-id", + "value": "121316" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "89a3a75a-d672-407b-a884-6e9cf115b6be", + "owned-node-edge-point": [ + { + "uuid": "d9593471-2100-4bc9-bab0-50b72a036a2e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121317" + }, + { + "value-name": "topology-node-local-id", + "value": "121317" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c0bf507d-678f-4c9b-aa78-9599dec8d156", + "owned-node-edge-point": [ + { + "uuid": "c9d48c5e-3de5-4535-b2dc-0ad9727e4a60", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121318" + }, + { + "value-name": "topology-node-local-id", + "value": "121318" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d9ea8c48-09d9-46f9-bddf-5856ea40a07a", + "owned-node-edge-point": [ + { + "uuid": "a66a3569-7cda-4ce2-8297-8421a9270cc9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121319" + }, + { + "value-name": "topology-node-local-id", + "value": "121319" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "owned-node-edge-point": [ + { + "uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12131" + } + ] + }, + { + "uuid": "d5932661-752c-4616-9327-6474e43c25bc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12131" + }, + { + "value-name": "topology-node-local-id", + "value": "12131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f0e49ca6-38e5-415c-bf17-a98db01e43d1", + "owned-node-edge-point": [ + { + "uuid": "1d04e9e1-cbd1-4712-a510-c16c77c8036c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121321" + }, + { + "value-name": "topology-node-local-id", + "value": "121321" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "825d3910-098c-4d2c-be89-6a27ea7af380", + "owned-node-edge-point": [ + { + "uuid": "ee8ddfc9-3cca-413b-bcc1-13e7cc221704", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121322" + }, + { + "value-name": "topology-node-local-id", + "value": "121322" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "95358d88-18b5-4654-acf8-1d17b3e3d089", + "owned-node-edge-point": [ + { + "uuid": "e43ee1c9-8bb5-4fd7-b07e-696f82914b27", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121323" + }, + { + "value-name": "topology-node-local-id", + "value": "121323" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "936cf044-6909-4053-af2a-3f1309b6b1ea", + "owned-node-edge-point": [ + { + "uuid": "303bec55-41cb-4009-a631-ee71f3e038cf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121324" + }, + { + "value-name": "topology-node-local-id", + "value": "121324" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d1928f37-2188-46e7-9824-5b8a611dc9c9", + "owned-node-edge-point": [ + { + "uuid": "996dcead-7c75-49f6-a165-ad01e5c95e9a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121325" + }, + { + "value-name": "topology-node-local-id", + "value": "121325" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b88feb50-bdc9-47dd-9c41-cc0066a05885", + "owned-node-edge-point": [ + { + "uuid": "195b2ba0-741b-4aff-9e93-c1bbf288708f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121326" + }, + { + "value-name": "topology-node-local-id", + "value": "121326" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "39a8fef5-fda1-4aa9-942a-19e91ad59458", + "owned-node-edge-point": [ + { + "uuid": "d96e4b43-64a6-43b5-8744-be75882537dc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121327" + }, + { + "value-name": "topology-node-local-id", + "value": "121327" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "61bda422-44b9-49a7-b283-6b7504a1d143", + "owned-node-edge-point": [ + { + "uuid": "bf6330bf-753b-4baf-9b44-b3620733b113", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121328" + }, + { + "value-name": "topology-node-local-id", + "value": "121328" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "da48d785-fd81-414e-a324-01d773933a87", + "owned-node-edge-point": [ + { + "uuid": "8a661b00-d694-47bc-b708-d6d325e5c5e3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121329" + }, + { + "value-name": "topology-node-local-id", + "value": "121329" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "owned-node-edge-point": [ + { + "uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12132" + } + ] + }, + { + "uuid": "d4f43213-00ba-461f-b77c-54e36b65c618", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12132" + }, + { + "value-name": "topology-node-local-id", + "value": "12132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5c1e84ea-bca9-44e7-b3f2-5d1418ac0e93", + "owned-node-edge-point": [ + { + "uuid": "f6f5004e-d1b8-46e3-ac02-fdb092990c01", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121331" + }, + { + "value-name": "topology-node-local-id", + "value": "121331" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "90878ae9-a419-4091-9052-6554ab7785d5", + "owned-node-edge-point": [ + { + "uuid": "afe286e0-fa68-4388-a560-c6f5a4c8fc35", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121332" + }, + { + "value-name": "topology-node-local-id", + "value": "121332" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "28641b87-dbdf-4a0e-9b90-7579e3416617", + "owned-node-edge-point": [ + { + "uuid": "2d572805-c813-4899-85bb-c84613e97307", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121333" + }, + { + "value-name": "topology-node-local-id", + "value": "121333" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0298e10c-bc82-4d01-a6af-6a2a18b3124e", + "owned-node-edge-point": [ + { + "uuid": "6e3c515e-06a1-4e23-9ad8-abc1bf1983ac", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121334" + }, + { + "value-name": "topology-node-local-id", + "value": "121334" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a7395048-d8a0-4ee7-a985-78800d73552b", + "owned-node-edge-point": [ + { + "uuid": "99f66bf0-82fa-4679-87e7-5c955cf8e92e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121335" + }, + { + "value-name": "topology-node-local-id", + "value": "121335" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bc8da452-0702-417e-a20a-984f881fa909", + "owned-node-edge-point": [ + { + "uuid": "b579d222-8090-4f8f-bb11-a5f4e125b51b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121336" + }, + { + "value-name": "topology-node-local-id", + "value": "121336" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "df85cb27-3e6c-4bec-8208-cd49d1751e74", + "owned-node-edge-point": [ + { + "uuid": "62e27b71-5205-48fa-bc66-0a4395fc7821", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121337" + }, + { + "value-name": "topology-node-local-id", + "value": "121337" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9bc07a0c-3edd-4ee6-a65c-53d0cafa2a2d", + "owned-node-edge-point": [ + { + "uuid": "beea5c90-dedf-4042-8560-44f1b9a15735", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121338" + }, + { + "value-name": "topology-node-local-id", + "value": "121338" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9f232298-703f-4a8f-b17d-993e0cf0810f", + "owned-node-edge-point": [ + { + "uuid": "5efaf96f-212b-42f1-b1c9-e266e86baa0b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121339" + }, + { + "value-name": "topology-node-local-id", + "value": "121339" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "owned-node-edge-point": [ + { + "uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12133" + } + ] + }, + { + "uuid": "37e97198-183e-47a7-9ab4-b66d8227fb15", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12133" + }, + { + "value-name": "topology-node-local-id", + "value": "12133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6075b1fa-3387-40c4-85ee-6fbf91871d0f", + "owned-node-edge-point": [ + { + "uuid": "7c4031fc-d7a7-4ebe-9eff-bf6882fe5851", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121341" + }, + { + "value-name": "topology-node-local-id", + "value": "121341" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "59a3ac93-fc35-404f-bdbd-2965537eb2cf", + "owned-node-edge-point": [ + { + "uuid": "1533bd3f-94ef-41f9-bc7a-5eda44094630", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121342" + }, + { + "value-name": "topology-node-local-id", + "value": "121342" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3994bb7d-11ec-4901-baba-28379d79ff86", + "owned-node-edge-point": [ + { + "uuid": "e577326d-3d1a-49f1-aa3b-ad5728337471", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121343" + }, + { + "value-name": "topology-node-local-id", + "value": "121343" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f52566b1-1804-4b84-a106-20ac113389ec", + "owned-node-edge-point": [ + { + "uuid": "b92b5f6a-1ef2-443b-89e9-8e9062f775d1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121344" + }, + { + "value-name": "topology-node-local-id", + "value": "121344" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9ea8f81e-fbac-46b0-a1df-b5183280d5b0", + "owned-node-edge-point": [ + { + "uuid": "679a68f3-eb93-4229-bc9d-56c2eaa6673d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121345" + }, + { + "value-name": "topology-node-local-id", + "value": "121345" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "04dfc899-2beb-48f1-9d17-054e9e1c7e41", + "owned-node-edge-point": [ + { + "uuid": "28b82857-3156-433d-858f-a750f6ee7779", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121346" + }, + { + "value-name": "topology-node-local-id", + "value": "121346" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a8ceda42-1045-4fe4-a95b-1097f01c13f9", + "owned-node-edge-point": [ + { + "uuid": "78552ef5-50ed-47ce-b61e-8323e629c4f7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121347" + }, + { + "value-name": "topology-node-local-id", + "value": "121347" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b67375e8-adde-49f1-9276-0d937d8ac15b", + "owned-node-edge-point": [ + { + "uuid": "b2248537-5070-4d09-a2d4-16a9812973d4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121348" + }, + { + "value-name": "topology-node-local-id", + "value": "121348" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "71dd152e-16d1-4780-9797-f2e9b5e6aab0", + "owned-node-edge-point": [ + { + "uuid": "ef26dde2-ea72-4636-b59c-d93718fca756", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-121349" + }, + { + "value-name": "topology-node-local-id", + "value": "121349" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "owned-node-edge-point": [ + { + "uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12134" + } + ] + }, + { + "uuid": "aa761f94-4f13-4fde-8ce7-fac8c7e2f322", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12134" + }, + { + "value-name": "topology-node-local-id", + "value": "12134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "21d819bc-3421-4ce0-a2d1-853d9d761855", + "owned-node-edge-point": [ + { + "uuid": "0d698d14-e9a7-4ecb-afce-18ba4ed53fe8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0d698d14-e9a7-4ecb-afce-18ba4ed53fe8" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1213" + } + ] + }, + { + "uuid": "adcff33c-ae26-4876-a558-2287bdd08e8b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1213" + }, + { + "value-name": "topology-node-local-id", + "value": "1213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ab004990-4583-4c83-9c54-33cef330f157", + "owned-node-edge-point": [ + { + "uuid": "072d4189-61f2-4902-8949-1901683a35ff", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "072d4189-61f2-4902-8949-1901683a35ff" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-CU-UP-121" + } + ] + }, + { + "uuid": "6b11b606-727c-4acc-9ae2-4b00df0bc8ce", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-CU-UP-121" + }, + { + "value-name": "topology-node-local-id", + "value": "121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-cu-up-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "10698cbf-565b-4a34-b615-a76b087ce366", + "owned-node-edge-point": [ + { + "uuid": "55c54e28-53ff-494e-bbb9-3246c3d9021d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122111" + }, + { + "value-name": "topology-node-local-id", + "value": "122111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7a066047-1b09-4945-91cd-cb0bb3865685", + "owned-node-edge-point": [ + { + "uuid": "24a4f380-a81c-4bc7-9196-b7ba76c83487", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122112" + }, + { + "value-name": "topology-node-local-id", + "value": "122112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cbf475c8-1dcb-461c-92ff-57efd10d1250", + "owned-node-edge-point": [ + { + "uuid": "93eae5ac-1e17-46c4-9ef2-3c3a5460a3cc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122113" + }, + { + "value-name": "topology-node-local-id", + "value": "122113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "666fa54e-269a-4dfe-ac45-83ccefd88771", + "owned-node-edge-point": [ + { + "uuid": "711614dd-9dbd-4f07-8b00-e57036fc71c0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122114" + }, + { + "value-name": "topology-node-local-id", + "value": "122114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "04dd0b82-758a-4aa6-bcc4-68ed48303337", + "owned-node-edge-point": [ + { + "uuid": "b9b38c56-b746-4e6a-a9b8-868b88398a70", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122115" + }, + { + "value-name": "topology-node-local-id", + "value": "122115" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b910715f-feeb-43bc-97f5-00d3665c3d23", + "owned-node-edge-point": [ + { + "uuid": "ac7d32cf-84ec-459d-a105-b17bfb487fc3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122116" + }, + { + "value-name": "topology-node-local-id", + "value": "122116" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0a803031-6ad0-4ca8-b5e5-e560822624f9", + "owned-node-edge-point": [ + { + "uuid": "bf6105cb-4974-4f13-8fc4-575969b9e6e2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122117" + }, + { + "value-name": "topology-node-local-id", + "value": "122117" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "04bb0a31-33ef-487c-bf49-b6ddfbf8aaa2", + "owned-node-edge-point": [ + { + "uuid": "9d0734f9-ce68-41c6-9a7e-575b655fe2b4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122118" + }, + { + "value-name": "topology-node-local-id", + "value": "122118" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0f691f1f-48a3-4e01-b9d9-6d3f1d094d46", + "owned-node-edge-point": [ + { + "uuid": "ccda7877-4e6d-47e6-94f1-67c7c2620e9e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122119" + }, + { + "value-name": "topology-node-local-id", + "value": "122119" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "owned-node-edge-point": [ + { + "uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12211" + } + ] + }, + { + "uuid": "a19f70c4-6bcc-4980-9ae2-f8966a381ef5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12211" + }, + { + "value-name": "topology-node-local-id", + "value": "12211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "97ac6f9d-6986-4e03-ba69-0905a7e8dc4b", + "owned-node-edge-point": [ + { + "uuid": "cda6370d-3260-46d0-a2ef-eb68852c0941", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122121" + }, + { + "value-name": "topology-node-local-id", + "value": "122121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d5770f00-5e8c-4819-bfc6-fbe3ba69ca79", + "owned-node-edge-point": [ + { + "uuid": "5e918e27-ad66-43b8-a457-e57c2effa238", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122122" + }, + { + "value-name": "topology-node-local-id", + "value": "122122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "668e7244-3f80-4cbf-a4f4-3d2cd99cb342", + "owned-node-edge-point": [ + { + "uuid": "d547c3ea-68ec-42a8-83a2-eaf55a1cb052", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122123" + }, + { + "value-name": "topology-node-local-id", + "value": "122123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1117e2e6-ecda-4c2b-97b7-e20d9956bfe2", + "owned-node-edge-point": [ + { + "uuid": "750b1545-732f-4e6b-937c-749f501238a3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122124" + }, + { + "value-name": "topology-node-local-id", + "value": "122124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "653bc823-8751-4e7e-80e7-910e3cf2f961", + "owned-node-edge-point": [ + { + "uuid": "d0f7239c-14e2-47c5-8700-14dd4d675a27", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122125" + }, + { + "value-name": "topology-node-local-id", + "value": "122125" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ff1a085f-93ab-43c8-bc20-7085eb8beafa", + "owned-node-edge-point": [ + { + "uuid": "b78baac9-0af5-45f4-8648-7f4f543631e7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122126" + }, + { + "value-name": "topology-node-local-id", + "value": "122126" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "31598aea-fd9c-4027-a8e8-4f8f14f34183", + "owned-node-edge-point": [ + { + "uuid": "45271182-901b-4fc6-b194-c887e4c28288", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122127" + }, + { + "value-name": "topology-node-local-id", + "value": "122127" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "754dc0e3-1526-4d3b-9156-995379962edd", + "owned-node-edge-point": [ + { + "uuid": "b2494bd6-2890-459c-ba53-399f35d0d8f1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122128" + }, + { + "value-name": "topology-node-local-id", + "value": "122128" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8c2e4126-b9c7-47d0-bb83-a90903ae5e82", + "owned-node-edge-point": [ + { + "uuid": "a7912257-eb33-4d07-a614-3326ac75684b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122129" + }, + { + "value-name": "topology-node-local-id", + "value": "122129" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "owned-node-edge-point": [ + { + "uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12212" + } + ] + }, + { + "uuid": "1aac623f-ee49-4353-86ce-24b67965e760", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12212" + }, + { + "value-name": "topology-node-local-id", + "value": "12212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d628ebfd-3760-4e06-95dd-d7fac1160644", + "owned-node-edge-point": [ + { + "uuid": "1128d05d-a01b-40f1-8704-853881ffa9ad", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122131" + }, + { + "value-name": "topology-node-local-id", + "value": "122131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ae4f9b3b-efda-4243-86cf-1be3831d31a7", + "owned-node-edge-point": [ + { + "uuid": "2698198c-e925-4c4c-bc55-c02ce7951fad", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122132" + }, + { + "value-name": "topology-node-local-id", + "value": "122132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d03474e6-8ee9-4ff4-a1d5-0e515592da89", + "owned-node-edge-point": [ + { + "uuid": "e5c00537-832f-4c43-b0b8-39ab0ed0e020", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122133" + }, + { + "value-name": "topology-node-local-id", + "value": "122133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9f088816-4f56-4bc0-a4e6-477529dfc7b8", + "owned-node-edge-point": [ + { + "uuid": "d0e26063-afc8-4a95-8aa2-3ae571f29c16", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122134" + }, + { + "value-name": "topology-node-local-id", + "value": "122134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c087c8f6-513f-46c2-a478-4ce5be07ab40", + "owned-node-edge-point": [ + { + "uuid": "fc890581-97ef-47d6-8056-921af8e5b35f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122135" + }, + { + "value-name": "topology-node-local-id", + "value": "122135" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "95d95798-49a4-4549-a5de-9146e72c1b1b", + "owned-node-edge-point": [ + { + "uuid": "97b55265-feb0-4964-8f77-2a62ffc50478", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122136" + }, + { + "value-name": "topology-node-local-id", + "value": "122136" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ce95b91a-7342-43ad-b083-a0a28a564ed1", + "owned-node-edge-point": [ + { + "uuid": "5938a830-1037-422a-b91d-6f904b7fa9f0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122137" + }, + { + "value-name": "topology-node-local-id", + "value": "122137" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "032535a4-35ee-4642-a236-4598fbcf08bb", + "owned-node-edge-point": [ + { + "uuid": "11e490d8-83d3-4dac-91ba-d186ebe12ba2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122138" + }, + { + "value-name": "topology-node-local-id", + "value": "122138" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fde17b41-1ebf-4d3c-93ea-dd855a313c8b", + "owned-node-edge-point": [ + { + "uuid": "00ddce0c-c322-46bd-a8b2-4e624c0e2f61", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122139" + }, + { + "value-name": "topology-node-local-id", + "value": "122139" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "owned-node-edge-point": [ + { + "uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12213" + } + ] + }, + { + "uuid": "09c03d31-b969-442f-a27e-e5a5d600036f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12213" + }, + { + "value-name": "topology-node-local-id", + "value": "12213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fa0ec55c-5565-4eb7-8825-d4617be1ba76", + "owned-node-edge-point": [ + { + "uuid": "5a732181-e59a-4bbe-92ee-dfc9f00a4033", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122141" + }, + { + "value-name": "topology-node-local-id", + "value": "122141" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b8ed5fd4-f801-40c4-884c-e14672439219", + "owned-node-edge-point": [ + { + "uuid": "1b66508f-7982-4521-9346-534831da5f99", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122142" + }, + { + "value-name": "topology-node-local-id", + "value": "122142" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1cf6bce4-b4af-48f7-8b7b-60d9bfa8d777", + "owned-node-edge-point": [ + { + "uuid": "d1d7b066-7ff9-4123-ba27-16162323558b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122143" + }, + { + "value-name": "topology-node-local-id", + "value": "122143" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "08440540-d8d6-4dfe-8b47-cda6d5cc6eca", + "owned-node-edge-point": [ + { + "uuid": "0415ec6c-bb23-4101-a149-e415bc668ad3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122144" + }, + { + "value-name": "topology-node-local-id", + "value": "122144" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7e1d36ab-056b-4651-a7cd-93fc9ab93b87", + "owned-node-edge-point": [ + { + "uuid": "305505c6-64ff-4863-bc6f-2379251a474c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122145" + }, + { + "value-name": "topology-node-local-id", + "value": "122145" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e5c3da49-333a-4b2f-ada9-31dbd52fd08f", + "owned-node-edge-point": [ + { + "uuid": "f4bd6f2e-dbd3-4e70-b4a0-7a00d46a2d8b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122146" + }, + { + "value-name": "topology-node-local-id", + "value": "122146" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "27a45bc6-894f-4dd9-afdc-0a426669d183", + "owned-node-edge-point": [ + { + "uuid": "3dd5d6a2-36fa-4f2e-9582-a47e1ec79402", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122147" + }, + { + "value-name": "topology-node-local-id", + "value": "122147" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5cfe8011-f20c-40bb-a01e-52de447c6467", + "owned-node-edge-point": [ + { + "uuid": "9fcafc3c-4a9a-4ee9-8813-407a846465e7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122148" + }, + { + "value-name": "topology-node-local-id", + "value": "122148" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "98db7640-3c6d-4274-99d4-f7679601c928", + "owned-node-edge-point": [ + { + "uuid": "4104bd9e-95f2-4930-b240-77a9342858d0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122149" + }, + { + "value-name": "topology-node-local-id", + "value": "122149" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "owned-node-edge-point": [ + { + "uuid": "5431220b-b9db-41a0-a838-327edf1ba522", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12214" + } + ] + }, + { + "uuid": "6078785b-be8f-40c1-8908-4d6ce84f44bc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12214" + }, + { + "value-name": "topology-node-local-id", + "value": "12214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ec5abf65-0d85-487f-96f5-56baa81f980a", + "owned-node-edge-point": [ + { + "uuid": "6b423903-d704-499b-9da0-0d4f7ad4c712", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "6b423903-d704-499b-9da0-0d4f7ad4c712" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1221" + } + ] + }, + { + "uuid": "7bfbb0d7-0f5b-4b8a-8859-435d9732f3de", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1221" + }, + { + "value-name": "topology-node-local-id", + "value": "1221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "12578fd1-d081-401b-bf28-ed8868a33728", + "owned-node-edge-point": [ + { + "uuid": "09d90d67-5802-4038-8f5e-4bdefa1d8544", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122211" + }, + { + "value-name": "topology-node-local-id", + "value": "122211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3dc2bb5b-1532-4a82-8d4c-f9e319019f87", + "owned-node-edge-point": [ + { + "uuid": "1b7bc6db-0e0f-41ab-890d-7de09e61569d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122212" + }, + { + "value-name": "topology-node-local-id", + "value": "122212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "20cde692-8c3f-4f1c-b4bf-5c8d386d7737", + "owned-node-edge-point": [ + { + "uuid": "34d5d5c2-ee9f-4140-8aed-1f752834300a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122213" + }, + { + "value-name": "topology-node-local-id", + "value": "122213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "853918ad-bf9a-4e03-9348-d694e4265b28", + "owned-node-edge-point": [ + { + "uuid": "e9e65f29-5529-4caf-befc-da5e715247f4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122214" + }, + { + "value-name": "topology-node-local-id", + "value": "122214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "37dcaab1-3409-4105-9635-ed232a017f2a", + "owned-node-edge-point": [ + { + "uuid": "bc585951-500b-4c90-8d05-2e3107434f7c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122215" + }, + { + "value-name": "topology-node-local-id", + "value": "122215" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "71d027b0-2f0e-4aec-8a0d-d51fe97879bb", + "owned-node-edge-point": [ + { + "uuid": "04d73d40-cd15-43cd-8a4c-2515f5133ff1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122216" + }, + { + "value-name": "topology-node-local-id", + "value": "122216" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5f1bac2a-073a-4040-85b6-8f9db200200a", + "owned-node-edge-point": [ + { + "uuid": "93ffbf99-d57a-41f0-9163-e90ba3cef6dc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122217" + }, + { + "value-name": "topology-node-local-id", + "value": "122217" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0415f986-0e92-446a-bf43-1a25d05197c9", + "owned-node-edge-point": [ + { + "uuid": "d4ff09c2-e77c-4e49-9a5c-15f7e1125152", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122218" + }, + { + "value-name": "topology-node-local-id", + "value": "122218" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a7e2251f-e6d7-4571-8afc-7bbbcaf48a64", + "owned-node-edge-point": [ + { + "uuid": "4d055e8b-f556-4081-9ae6-e42fa1d36844", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122219" + }, + { + "value-name": "topology-node-local-id", + "value": "122219" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "owned-node-edge-point": [ + { + "uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12221" + } + ] + }, + { + "uuid": "24181009-211e-4ab1-ab96-050a707e62d7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12221" + }, + { + "value-name": "topology-node-local-id", + "value": "12221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "98cc17eb-9695-4fa0-8dae-ad20455d371c", + "owned-node-edge-point": [ + { + "uuid": "e8fe4be3-2b80-4fef-8b65-1f97ef29a1f6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122221" + }, + { + "value-name": "topology-node-local-id", + "value": "122221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c64c1ab4-cfe3-43cd-9bd7-e9ef8b9b262e", + "owned-node-edge-point": [ + { + "uuid": "e7f251c9-6cd7-4744-af52-187bf89de689", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122222" + }, + { + "value-name": "topology-node-local-id", + "value": "122222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f1e33289-12ce-4227-9615-83e4e620f2b8", + "owned-node-edge-point": [ + { + "uuid": "c27be98f-c91d-443a-8dae-c1449b5ecd5c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122223" + }, + { + "value-name": "topology-node-local-id", + "value": "122223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c8874ed9-148f-4ffc-b79c-18f22782bb69", + "owned-node-edge-point": [ + { + "uuid": "3a69a2e9-8aca-4c63-9d6a-2f23be507e91", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122224" + }, + { + "value-name": "topology-node-local-id", + "value": "122224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1d655ee1-8c49-4463-ac54-ac5bed466566", + "owned-node-edge-point": [ + { + "uuid": "737232dd-654a-413e-9117-c9e008fc7a2b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122225" + }, + { + "value-name": "topology-node-local-id", + "value": "122225" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a1da345e-725e-45ec-905b-ad738759b200", + "owned-node-edge-point": [ + { + "uuid": "db3fb2d0-1b12-4983-ad4a-287a30d4923d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122226" + }, + { + "value-name": "topology-node-local-id", + "value": "122226" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cd4493f5-c632-42d8-989a-28da557df564", + "owned-node-edge-point": [ + { + "uuid": "c2ee15f4-a32b-4f68-8caf-2cb18290157a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122227" + }, + { + "value-name": "topology-node-local-id", + "value": "122227" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1af022e0-7c67-41da-9f52-a4b38f24e7d7", + "owned-node-edge-point": [ + { + "uuid": "fd9cfa83-52e3-4e96-b6a7-e46cf4690811", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122228" + }, + { + "value-name": "topology-node-local-id", + "value": "122228" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8effd64b-c4a0-46da-a74d-93f35972cce6", + "owned-node-edge-point": [ + { + "uuid": "80905e6c-5709-45b7-a492-9672e4393973", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122229" + }, + { + "value-name": "topology-node-local-id", + "value": "122229" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "owned-node-edge-point": [ + { + "uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12222" + } + ] + }, + { + "uuid": "41e58782-afc2-4e36-b29e-44b58b7d9ef5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12222" + }, + { + "value-name": "topology-node-local-id", + "value": "12222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dfc28891-7934-4f5c-9f24-60bd4ede7d9a", + "owned-node-edge-point": [ + { + "uuid": "9cebc0bb-cae0-463c-aa78-1ba38475598a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122231" + }, + { + "value-name": "topology-node-local-id", + "value": "122231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "46eb17a7-8158-407c-bebe-2c577a799539", + "owned-node-edge-point": [ + { + "uuid": "b045da0a-50c5-43ab-a04c-3785b84da509", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122232" + }, + { + "value-name": "topology-node-local-id", + "value": "122232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c726f15b-5fc0-4c87-984c-e29a45cfeaa6", + "owned-node-edge-point": [ + { + "uuid": "67d7bb7c-cf03-4175-bde8-06cbeca951ad", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122233" + }, + { + "value-name": "topology-node-local-id", + "value": "122233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9bc6d624-1fef-463b-9e62-1ac769341249", + "owned-node-edge-point": [ + { + "uuid": "94c652e6-f7fe-4e85-83da-8bc2d00c86f3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122234" + }, + { + "value-name": "topology-node-local-id", + "value": "122234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c6b134c4-9336-4c06-becb-88f0d2a628c1", + "owned-node-edge-point": [ + { + "uuid": "4726f2d3-65f7-49a0-98e8-0ad7392e663a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122235" + }, + { + "value-name": "topology-node-local-id", + "value": "122235" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "786d3876-b001-48f4-9fef-ec8c2848a2ea", + "owned-node-edge-point": [ + { + "uuid": "32b5a4c4-679e-4da7-b411-ae40c69575f4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122236" + }, + { + "value-name": "topology-node-local-id", + "value": "122236" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "395202a6-c276-4b7d-85f8-d364444b81a0", + "owned-node-edge-point": [ + { + "uuid": "1299c6ec-0ba0-4f02-88f2-a2cbb0f98209", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122237" + }, + { + "value-name": "topology-node-local-id", + "value": "122237" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7bd591a2-8b9c-4d14-a8ea-54a42f7860d4", + "owned-node-edge-point": [ + { + "uuid": "9a54f85d-d18e-4b91-afa5-0d280830bdca", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122238" + }, + { + "value-name": "topology-node-local-id", + "value": "122238" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7f2331ca-6a05-4f03-9747-f3c3c46871ed", + "owned-node-edge-point": [ + { + "uuid": "0962f3b9-11a9-4fbd-84d0-6d48c81278da", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122239" + }, + { + "value-name": "topology-node-local-id", + "value": "122239" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "owned-node-edge-point": [ + { + "uuid": "0f55f129-32da-4783-ab13-f0503d3fd504", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12223" + } + ] + }, + { + "uuid": "bf550280-1417-4167-959b-bbe86771ade9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12223" + }, + { + "value-name": "topology-node-local-id", + "value": "12223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "84f61d8a-adb5-4b30-816c-695a59d2396f", + "owned-node-edge-point": [ + { + "uuid": "4254e16c-f9fa-4f6d-8103-678dcc3253e5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122241" + }, + { + "value-name": "topology-node-local-id", + "value": "122241" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "77f67be1-f0c1-4def-b8dd-7c9266219731", + "owned-node-edge-point": [ + { + "uuid": "59d70ac7-3c4e-4a7e-8645-f55828a5cee2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122242" + }, + { + "value-name": "topology-node-local-id", + "value": "122242" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1b3938a2-73d9-4dfc-88fd-c662da354750", + "owned-node-edge-point": [ + { + "uuid": "476db8ef-3d52-4de2-a916-603018563585", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122243" + }, + { + "value-name": "topology-node-local-id", + "value": "122243" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bb1dcd10-4036-4786-b52c-b2bacfbfe899", + "owned-node-edge-point": [ + { + "uuid": "4544a112-8954-420d-84b0-124743a39f40", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122244" + }, + { + "value-name": "topology-node-local-id", + "value": "122244" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "204047be-22ca-49fd-9129-414e281f2df1", + "owned-node-edge-point": [ + { + "uuid": "dd19430e-554b-47d4-912f-463817a102d7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122245" + }, + { + "value-name": "topology-node-local-id", + "value": "122245" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8c147158-1d63-4b56-bb3c-1450d101ef68", + "owned-node-edge-point": [ + { + "uuid": "09781756-fb21-4f2e-91d2-50accf3f4c98", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122246" + }, + { + "value-name": "topology-node-local-id", + "value": "122246" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "71c4a55b-625d-4fe9-811c-11a50624689c", + "owned-node-edge-point": [ + { + "uuid": "0e32a2a9-abc6-4c4c-abfd-3cce2e00f0a5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122247" + }, + { + "value-name": "topology-node-local-id", + "value": "122247" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e20e43e5-e180-43a9-8cea-00495332e17a", + "owned-node-edge-point": [ + { + "uuid": "ba0043ec-e42e-44c2-901b-eedf1c005502", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122248" + }, + { + "value-name": "topology-node-local-id", + "value": "122248" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "68d30e97-29b1-4247-b52d-97997ed81e58", + "owned-node-edge-point": [ + { + "uuid": "168ebd1e-0556-4a55-b64c-94606a2fe723", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122249" + }, + { + "value-name": "topology-node-local-id", + "value": "122249" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "owned-node-edge-point": [ + { + "uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12224" + } + ] + }, + { + "uuid": "8bf64dbc-c950-4be0-9a57-e0bb0d33174b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12224" + }, + { + "value-name": "topology-node-local-id", + "value": "12224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "268f540d-1444-42b1-9f98-b3dd1d47910d", + "owned-node-edge-point": [ + { + "uuid": "991c5ac8-902f-4c0e-9afb-f14dcdd433fb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "991c5ac8-902f-4c0e-9afb-f14dcdd433fb" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1222" + } + ] + }, + { + "uuid": "56371cc5-f5e6-448a-85ba-7f4268f95650", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1222" + }, + { + "value-name": "topology-node-local-id", + "value": "1222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2f392b86-1817-4432-b1f7-6d89cc15b36d", + "owned-node-edge-point": [ + { + "uuid": "65546252-cc1d-450c-b569-2f2b6f32589d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122311" + }, + { + "value-name": "topology-node-local-id", + "value": "122311" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e331c1ca-8666-4b41-ba09-5f4210f60598", + "owned-node-edge-point": [ + { + "uuid": "16ba203a-fc74-4156-850c-0f86c18aeeb0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122312" + }, + { + "value-name": "topology-node-local-id", + "value": "122312" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e1e46d69-fb99-4689-9e21-af5b1440540e", + "owned-node-edge-point": [ + { + "uuid": "df054d74-42ad-454b-b08b-08087051413d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122313" + }, + { + "value-name": "topology-node-local-id", + "value": "122313" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1f879da4-2933-46da-a603-cef695ef4cc7", + "owned-node-edge-point": [ + { + "uuid": "3f08f621-2069-451e-8845-22a35764c954", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122314" + }, + { + "value-name": "topology-node-local-id", + "value": "122314" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "21c59283-9ede-483f-b17a-2029d534535a", + "owned-node-edge-point": [ + { + "uuid": "10d2b263-9b22-44ca-b328-09d486e92679", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122315" + }, + { + "value-name": "topology-node-local-id", + "value": "122315" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ad62bac8-5544-491c-ae76-436edc47e845", + "owned-node-edge-point": [ + { + "uuid": "7d69601a-f976-4ccb-b530-d4955c015055", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122316" + }, + { + "value-name": "topology-node-local-id", + "value": "122316" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fc3e9c6e-719c-4f72-a5e5-e54906227750", + "owned-node-edge-point": [ + { + "uuid": "eb405fa9-2846-4b79-a6de-761d7d41199c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122317" + }, + { + "value-name": "topology-node-local-id", + "value": "122317" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1935d79c-cb07-4c72-b709-b254b914767e", + "owned-node-edge-point": [ + { + "uuid": "4d8e4f97-8819-4af7-9cf3-d61314dee08d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122318" + }, + { + "value-name": "topology-node-local-id", + "value": "122318" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9f247c8f-a5ad-48f4-a72e-db3675843719", + "owned-node-edge-point": [ + { + "uuid": "8e8b6735-db24-4660-b27a-4c56af7c2886", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122319" + }, + { + "value-name": "topology-node-local-id", + "value": "122319" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "owned-node-edge-point": [ + { + "uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12231" + } + ] + }, + { + "uuid": "42c8663c-5aa2-45d2-b2ca-6ac11e29d8a0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12231" + }, + { + "value-name": "topology-node-local-id", + "value": "12231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "add3ed5a-97df-43e7-8c0b-7b2b92577d4a", + "owned-node-edge-point": [ + { + "uuid": "f8a7b6a4-0e04-4a1d-a2b0-f4737c28a3d5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122321" + }, + { + "value-name": "topology-node-local-id", + "value": "122321" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0ba3bef2-c0bc-417a-8c1d-2a4e7394e91f", + "owned-node-edge-point": [ + { + "uuid": "70991a8e-df42-46fa-8086-a093305a1055", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122322" + }, + { + "value-name": "topology-node-local-id", + "value": "122322" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c2825e0b-af2d-4383-a6f7-5b42901f6886", + "owned-node-edge-point": [ + { + "uuid": "5964b27f-369b-47f1-9eb7-a95a692f45a4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122323" + }, + { + "value-name": "topology-node-local-id", + "value": "122323" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8db277ad-2376-4de6-a637-7b1c35742398", + "owned-node-edge-point": [ + { + "uuid": "d64a305c-622d-4b3d-aeef-47daef33a277", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122324" + }, + { + "value-name": "topology-node-local-id", + "value": "122324" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ecb12b76-753a-48ec-951b-e562a42bec90", + "owned-node-edge-point": [ + { + "uuid": "ad26a588-8535-4d47-8cd0-0d9a57067b6c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122325" + }, + { + "value-name": "topology-node-local-id", + "value": "122325" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ef9afaa0-c44d-445e-a968-dbd871649660", + "owned-node-edge-point": [ + { + "uuid": "5635a6a4-07b3-469f-ba8f-de7a7cf7b452", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122326" + }, + { + "value-name": "topology-node-local-id", + "value": "122326" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "47d69699-aeac-4b68-8f0d-3a06d2f1d525", + "owned-node-edge-point": [ + { + "uuid": "9c555f35-7984-4f1a-9a65-7b4d09b2845f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122327" + }, + { + "value-name": "topology-node-local-id", + "value": "122327" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c4dc8903-8746-4311-b0fc-22c11d8e7745", + "owned-node-edge-point": [ + { + "uuid": "ff592555-8658-45eb-bb66-1eee32e543e4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122328" + }, + { + "value-name": "topology-node-local-id", + "value": "122328" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7b987ed5-88ab-4e00-9bd7-d8010d9e19f3", + "owned-node-edge-point": [ + { + "uuid": "d8280afb-a9eb-47a0-bed2-8a26567a472b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122329" + }, + { + "value-name": "topology-node-local-id", + "value": "122329" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "owned-node-edge-point": [ + { + "uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12232" + } + ] + }, + { + "uuid": "cccde60c-8333-464f-ac4e-860d10141100", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12232" + }, + { + "value-name": "topology-node-local-id", + "value": "12232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f707a0a0-1423-4c8a-8fdb-1e6661a2fe45", + "owned-node-edge-point": [ + { + "uuid": "fad983f6-5ba4-4078-87fb-5551863ed698", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122331" + }, + { + "value-name": "topology-node-local-id", + "value": "122331" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b394bd38-2626-48cd-89ff-a7d926af6251", + "owned-node-edge-point": [ + { + "uuid": "ad72fa2e-01d0-477e-8c06-bf94471ffc99", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122332" + }, + { + "value-name": "topology-node-local-id", + "value": "122332" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "af725876-fdec-44b0-931b-18dacaa52df2", + "owned-node-edge-point": [ + { + "uuid": "4c09e7b2-e18d-40dd-8035-a5d19c0ed58d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122333" + }, + { + "value-name": "topology-node-local-id", + "value": "122333" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "018c1cd7-20c8-4244-a901-799b1f87bce0", + "owned-node-edge-point": [ + { + "uuid": "7d033296-d7a0-40a1-9cdb-f9475a25733f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122334" + }, + { + "value-name": "topology-node-local-id", + "value": "122334" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e4a4b01e-907c-4a34-b887-b0feb5f0089b", + "owned-node-edge-point": [ + { + "uuid": "a77d507e-c454-41a4-a547-9339973b97e8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122335" + }, + { + "value-name": "topology-node-local-id", + "value": "122335" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "18c36c67-e6aa-49d1-82c9-e0f8b04ac7e3", + "owned-node-edge-point": [ + { + "uuid": "0b0677a7-e35f-451c-9f1c-e0530a27acaa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122336" + }, + { + "value-name": "topology-node-local-id", + "value": "122336" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5d79781e-8c04-4dd5-a3b0-1e99eee18e4e", + "owned-node-edge-point": [ + { + "uuid": "b12e688b-a1c4-44e3-9df3-44ada662516a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122337" + }, + { + "value-name": "topology-node-local-id", + "value": "122337" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cd5170d8-c2bc-4a2d-9518-f89e8eb55b24", + "owned-node-edge-point": [ + { + "uuid": "c0f0c4ad-8972-497c-89fb-1098f744439f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122338" + }, + { + "value-name": "topology-node-local-id", + "value": "122338" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d13df449-028e-4edb-b6de-3813d98cc752", + "owned-node-edge-point": [ + { + "uuid": "67ea2fc8-b80a-41cc-88da-77cdc072a0f2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122339" + }, + { + "value-name": "topology-node-local-id", + "value": "122339" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "owned-node-edge-point": [ + { + "uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12233" + } + ] + }, + { + "uuid": "1d1f5b7d-62d1-4f27-a23b-16c74874b3dd", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12233" + }, + { + "value-name": "topology-node-local-id", + "value": "12233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "beb5e955-26c0-4daf-b1ae-74175f1cca5f", + "owned-node-edge-point": [ + { + "uuid": "97dc2482-231a-42d2-87fc-f214155335d2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122341" + }, + { + "value-name": "topology-node-local-id", + "value": "122341" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "241cc7bf-8270-44bd-8211-f4e9ddb63d23", + "owned-node-edge-point": [ + { + "uuid": "6f738bda-486c-47ba-867d-e9651695ba41", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122342" + }, + { + "value-name": "topology-node-local-id", + "value": "122342" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "551f763a-f6df-4568-8e12-093f7c40bafe", + "owned-node-edge-point": [ + { + "uuid": "1d2c494c-4f04-4265-8bd5-64a373a28d90", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122343" + }, + { + "value-name": "topology-node-local-id", + "value": "122343" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a27cc9fa-7ea6-4daf-9323-22f4920e554f", + "owned-node-edge-point": [ + { + "uuid": "3d823fb0-e6bd-4ee2-8e1d-0da720473b4c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122344" + }, + { + "value-name": "topology-node-local-id", + "value": "122344" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "22d1c72b-bae2-4505-8082-92bd40ac8a44", + "owned-node-edge-point": [ + { + "uuid": "7c51ddcc-f9e4-4f9d-b0e6-2a81eb6c5314", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122345" + }, + { + "value-name": "topology-node-local-id", + "value": "122345" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8ded6acb-0bbb-43e9-9a74-90c681689392", + "owned-node-edge-point": [ + { + "uuid": "0c0ebdf5-5400-4766-80ca-05b2a3507be1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122346" + }, + { + "value-name": "topology-node-local-id", + "value": "122346" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1d3cef7c-b2a4-441c-88b5-ae811242b37b", + "owned-node-edge-point": [ + { + "uuid": "2c64426c-2afe-44eb-bed7-2e086c35a95f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122347" + }, + { + "value-name": "topology-node-local-id", + "value": "122347" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6e3516e7-c12b-4fd0-b551-ca4ab9490cd0", + "owned-node-edge-point": [ + { + "uuid": "03f1e7f2-180e-4c34-a8d9-56679d5bd7fb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122348" + }, + { + "value-name": "topology-node-local-id", + "value": "122348" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "79832b0e-c208-408c-8eed-d9ce8b7d0908", + "owned-node-edge-point": [ + { + "uuid": "d8d6eaf7-0b93-4e27-80ea-84836e8746dd", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-122349" + }, + { + "value-name": "topology-node-local-id", + "value": "122349" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "owned-node-edge-point": [ + { + "uuid": "9cea8692-b814-4850-9dcf-540c3a345203", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-12234" + } + ] + }, + { + "uuid": "3be371d5-02e4-4cc2-9fff-e49361c2ee44", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-12234" + }, + { + "value-name": "topology-node-local-id", + "value": "12234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ef519e6f-1738-4175-b0bd-1da45103c82d", + "owned-node-edge-point": [ + { + "uuid": "0d00c1d9-85df-4b16-a18f-74141cf5353f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0d00c1d9-85df-4b16-a18f-74141cf5353f" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-1223" + } + ] + }, + { + "uuid": "694535ee-e915-4bde-9da0-a798913ef908", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-1223" + }, + { + "value-name": "topology-node-local-id", + "value": "1223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fc383d27-9563-42a7-96a7-46a0cbb5a805", + "owned-node-edge-point": [ + { + "uuid": "76d1e14c-f9ef-445d-a11b-e3061e673e61", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "76d1e14c-f9ef-445d-a11b-e3061e673e61" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-CU-UP-122" + } + ] + }, + { + "uuid": "391e4c6d-26b1-4b00-966d-a98f037945b7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-CU-UP-122" + }, + { + "value-name": "topology-node-local-id", + "value": "122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-cu-up-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fd10c0ed-a1b3-4c88-866b-c4e9ee7770b4", + "owned-node-edge-point": [ + { + "uuid": "c7153482-ab6d-41d2-aa7d-e4a2ba8852aa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "c7153482-ab6d-41d2-aa7d-e4a2ba8852aa" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for NEAR-RT-RIC-12" + } + ] + }, + { + "uuid": "4a0eb0ff-6e32-4a79-9260-a5db5e58755c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "NEAR-RT-RIC-12" + }, + { + "value-name": "topology-node-local-id", + "value": "12" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:near-rt-ric-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f63fc9d3-a14b-4a68-9466-4300a5de692b", + "owned-node-edge-point": [ + { + "uuid": "58b49d3d-46b0-4db0-b237-0f1f7fdeacf1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "58b49d3d-46b0-4db0-b237-0f1f7fdeacf1" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for SMO-1" + } + ] + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "SMO-1" + }, + { + "value-name": "topology-node-local-id", + "value": "1" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:smo-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8ff41967-ef7c-4cf0-aee6-473212c4bcb3", + "owned-node-edge-point": [ + { + "uuid": "51818955-a1c4-4804-98d1-8b78156c8e0c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211111" + }, + { + "value-name": "topology-node-local-id", + "value": "211111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "07481b98-fc48-48bc-b99f-fc54881fc332", + "owned-node-edge-point": [ + { + "uuid": "a1d96c2f-c9da-4e43-a2be-ec536dda99e2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211112" + }, + { + "value-name": "topology-node-local-id", + "value": "211112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "91d56826-7292-4464-afcb-35eb7c4a6a98", + "owned-node-edge-point": [ + { + "uuid": "76b00f4e-b583-4997-b895-ccaf195d90a9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211113" + }, + { + "value-name": "topology-node-local-id", + "value": "211113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0a616c42-2e51-44e2-8652-9fcbec3095a8", + "owned-node-edge-point": [ + { + "uuid": "ed1d6999-369e-4f41-b548-bbc003bbb09b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211114" + }, + { + "value-name": "topology-node-local-id", + "value": "211114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d5855acd-ddd0-41dc-8828-0b45bf9bce93", + "owned-node-edge-point": [ + { + "uuid": "d65c39c6-c93a-464f-b906-92ab36f71ef7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211115" + }, + { + "value-name": "topology-node-local-id", + "value": "211115" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dfa0885a-60e6-4f71-becd-7de66537d25e", + "owned-node-edge-point": [ + { + "uuid": "27f10542-5c8e-4d74-8e70-f3a04ff4af01", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211116" + }, + { + "value-name": "topology-node-local-id", + "value": "211116" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "31ec8ba6-dd52-4a79-bdf1-bdb7b80a8948", + "owned-node-edge-point": [ + { + "uuid": "66b77695-e642-437f-9520-0bf2960bc83a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211117" + }, + { + "value-name": "topology-node-local-id", + "value": "211117" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a95daffb-c2c9-4aa3-90e3-48eb136d4339", + "owned-node-edge-point": [ + { + "uuid": "15703dd5-2d94-48a1-8bff-387d09bc24fb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211118" + }, + { + "value-name": "topology-node-local-id", + "value": "211118" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c772bde3-1a91-40da-bba4-4fa1aa5b6f66", + "owned-node-edge-point": [ + { + "uuid": "1ad5dd5c-90e6-4dd3-9898-570a0b1ee92b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211119" + }, + { + "value-name": "topology-node-local-id", + "value": "211119" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "owned-node-edge-point": [ + { + "uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21111" + } + ] + }, + { + "uuid": "7c056f29-8a92-4eae-9a70-cff10e3fb01f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21111" + }, + { + "value-name": "topology-node-local-id", + "value": "21111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f2915884-5ae2-4774-8fec-6ffed4112047", + "owned-node-edge-point": [ + { + "uuid": "6935a1c5-0968-43ce-9d53-1ef00d2faf7c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211121" + }, + { + "value-name": "topology-node-local-id", + "value": "211121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5fd9635c-dce4-47a0-9823-bf1e84fea036", + "owned-node-edge-point": [ + { + "uuid": "ad485ab6-85ee-4ef3-9ba9-bf0acae40c70", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211122" + }, + { + "value-name": "topology-node-local-id", + "value": "211122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8d0064ad-5855-4812-b326-68ae2eb40786", + "owned-node-edge-point": [ + { + "uuid": "d4667def-0733-4db3-9666-4db126236458", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211123" + }, + { + "value-name": "topology-node-local-id", + "value": "211123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "56eba852-580d-4df3-9db1-227c173dc8ee", + "owned-node-edge-point": [ + { + "uuid": "d26d3560-9dd7-4706-a809-19816a70abb8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211124" + }, + { + "value-name": "topology-node-local-id", + "value": "211124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "112f48df-cf06-436a-86ff-5df4f28c626e", + "owned-node-edge-point": [ + { + "uuid": "aa9ccbcb-9c6b-4270-bd9b-2f3b60778c33", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211125" + }, + { + "value-name": "topology-node-local-id", + "value": "211125" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8f046d31-a15e-4992-b911-a16266a60b51", + "owned-node-edge-point": [ + { + "uuid": "756f4eea-41fc-44da-b00e-910c770f5ab2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211126" + }, + { + "value-name": "topology-node-local-id", + "value": "211126" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "02e777dc-08fb-40c7-a433-f03b3acc9c90", + "owned-node-edge-point": [ + { + "uuid": "db80d534-d718-4caa-ae19-a4735a2d8542", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211127" + }, + { + "value-name": "topology-node-local-id", + "value": "211127" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a9226ff3-db76-41e2-9f48-b666db61f076", + "owned-node-edge-point": [ + { + "uuid": "ba4dbcc0-29a6-4795-89b1-ad6e277299d0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211128" + }, + { + "value-name": "topology-node-local-id", + "value": "211128" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d334d859-91a0-4bbd-af1d-984b5912d256", + "owned-node-edge-point": [ + { + "uuid": "37941d40-7438-4d79-b290-f67ad655f368", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211129" + }, + { + "value-name": "topology-node-local-id", + "value": "211129" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "owned-node-edge-point": [ + { + "uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21112" + } + ] + }, + { + "uuid": "f99ffe64-e3ee-486d-9aa4-74acb7158de1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21112" + }, + { + "value-name": "topology-node-local-id", + "value": "21112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "69b4da8e-5d43-42e7-9565-2c3738932d6e", + "owned-node-edge-point": [ + { + "uuid": "f405688a-8ded-4df1-94ff-95d409230287", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211131" + }, + { + "value-name": "topology-node-local-id", + "value": "211131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b8d840f8-57ee-4901-a068-1a0c53dbda41", + "owned-node-edge-point": [ + { + "uuid": "d3d26fc7-3f6f-4a03-be4e-efe38fc9472a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211132" + }, + { + "value-name": "topology-node-local-id", + "value": "211132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f6db1dff-b28f-425b-977c-cb16877aa7a4", + "owned-node-edge-point": [ + { + "uuid": "cf1692a0-1c81-4703-8d24-dba956b97305", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211133" + }, + { + "value-name": "topology-node-local-id", + "value": "211133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3af85e0a-60ba-4ba5-8fae-dfe85dace5de", + "owned-node-edge-point": [ + { + "uuid": "405d1209-4de8-4ac2-8e07-02ae573637e3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211134" + }, + { + "value-name": "topology-node-local-id", + "value": "211134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3d22169c-04bc-4ca0-9190-047cdf50a77e", + "owned-node-edge-point": [ + { + "uuid": "dd999e2a-9c00-4867-9c23-556d46d07b4c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211135" + }, + { + "value-name": "topology-node-local-id", + "value": "211135" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d235d8fa-da8e-40c7-8ef6-4eaecd4ed9ee", + "owned-node-edge-point": [ + { + "uuid": "452ad02a-5bca-4e45-968f-7a9cd0882614", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211136" + }, + { + "value-name": "topology-node-local-id", + "value": "211136" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "87b2d3b2-412c-4cbb-9f66-4d20bc98bced", + "owned-node-edge-point": [ + { + "uuid": "78075113-c408-4006-be3e-895bf45d1526", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211137" + }, + { + "value-name": "topology-node-local-id", + "value": "211137" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1b6d0bf1-b0e1-4450-bfb7-faff14a9c3a2", + "owned-node-edge-point": [ + { + "uuid": "c8131740-f668-4a8f-ae40-f36952d17d23", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211138" + }, + { + "value-name": "topology-node-local-id", + "value": "211138" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1d8ae7e8-473b-4c2a-906b-fd878c51ebc0", + "owned-node-edge-point": [ + { + "uuid": "6dbe554e-c90e-4d85-a48d-77a141b17995", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211139" + }, + { + "value-name": "topology-node-local-id", + "value": "211139" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "owned-node-edge-point": [ + { + "uuid": "a0c39647-5c87-45f8-b203-add395e97420", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21113" + } + ] + }, + { + "uuid": "f822195d-6d09-4e0d-9777-de651c58c474", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21113" + }, + { + "value-name": "topology-node-local-id", + "value": "21113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2d0bb9e3-f7ce-4180-bc25-25c4efb36ec9", + "owned-node-edge-point": [ + { + "uuid": "90332bd9-849b-4d4f-9397-ed070422410a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211141" + }, + { + "value-name": "topology-node-local-id", + "value": "211141" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5c87028a-c195-4190-abde-acd98afc4669", + "owned-node-edge-point": [ + { + "uuid": "2ccd1abf-ceaf-4306-ac4c-da79ef6c1e0a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211142" + }, + { + "value-name": "topology-node-local-id", + "value": "211142" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "71902cbb-c6b3-443a-87ef-a902e3952067", + "owned-node-edge-point": [ + { + "uuid": "10080920-2ada-414c-a6a8-adbb1095154e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211143" + }, + { + "value-name": "topology-node-local-id", + "value": "211143" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b353bcc0-6763-48d2-89d8-b7fbfd2f1bdb", + "owned-node-edge-point": [ + { + "uuid": "27050f2c-cb3b-4dc0-a5d5-b93649c45fc4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211144" + }, + { + "value-name": "topology-node-local-id", + "value": "211144" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "15162c58-771c-4b93-b70a-9724a9d525b8", + "owned-node-edge-point": [ + { + "uuid": "98cee68a-f4e2-4542-9c3b-195c495cd092", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211145" + }, + { + "value-name": "topology-node-local-id", + "value": "211145" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9ed45340-647b-48df-89d7-b20359e73ca1", + "owned-node-edge-point": [ + { + "uuid": "34e0ef99-d1de-444a-9dc4-1e0e8bd54ebd", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211146" + }, + { + "value-name": "topology-node-local-id", + "value": "211146" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f63be49d-f2da-4cca-af41-29052190dc92", + "owned-node-edge-point": [ + { + "uuid": "b961a8c7-7bf9-46fb-a0da-44a08529ee9e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211147" + }, + { + "value-name": "topology-node-local-id", + "value": "211147" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7a040aa4-99c4-4e23-b94c-da0cb3cef77b", + "owned-node-edge-point": [ + { + "uuid": "ece736a6-7c27-444c-9c12-cf8e0d4a895a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211148" + }, + { + "value-name": "topology-node-local-id", + "value": "211148" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "035cf6a6-5573-4965-b141-8da779f54529", + "owned-node-edge-point": [ + { + "uuid": "e1770cdc-cd67-42f4-a677-3d3dbe5f866a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211149" + }, + { + "value-name": "topology-node-local-id", + "value": "211149" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "owned-node-edge-point": [ + { + "uuid": "583ce273-b308-4138-a736-42a8470ee5e2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21114" + } + ] + }, + { + "uuid": "f3b0a39d-5138-4c8a-939d-cd354fc37035", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21114" + }, + { + "value-name": "topology-node-local-id", + "value": "21114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c7de8796-18f7-47f7-8e78-e2ca33336cb6", + "owned-node-edge-point": [ + { + "uuid": "87751cad-a76d-4061-a2fa-2f6b938fb28b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "87751cad-a76d-4061-a2fa-2f6b938fb28b" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2111" + } + ] + }, + { + "uuid": "18275f5d-bc51-4c0c-b926-ee49704b6e8c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2111" + }, + { + "value-name": "topology-node-local-id", + "value": "2111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "df9edf91-1ed2-444b-a117-6c5edaa5c215", + "owned-node-edge-point": [ + { + "uuid": "83d0e9b3-74a0-4a74-95a8-10b015a688d7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211211" + }, + { + "value-name": "topology-node-local-id", + "value": "211211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dcacfdfa-2e6c-46dc-a357-3d4a9678a6fa", + "owned-node-edge-point": [ + { + "uuid": "1ab67775-fe26-4f67-aa28-d55e27ed236d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211212" + }, + { + "value-name": "topology-node-local-id", + "value": "211212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a6c1abc5-3fae-4655-b13e-5b092b858ece", + "owned-node-edge-point": [ + { + "uuid": "b3d3e2b2-ed15-4af8-9f46-118c971d29b8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211213" + }, + { + "value-name": "topology-node-local-id", + "value": "211213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "57d1ab6a-3942-43c9-bea9-90d1ce2d8666", + "owned-node-edge-point": [ + { + "uuid": "8f397bec-cc93-4e4c-9fc5-ed4bdb6b8a54", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211214" + }, + { + "value-name": "topology-node-local-id", + "value": "211214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f570c316-c905-469f-9f0a-e792c3d8a13b", + "owned-node-edge-point": [ + { + "uuid": "5d24f198-a39e-451c-86ed-7c4dc6aa42e1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211215" + }, + { + "value-name": "topology-node-local-id", + "value": "211215" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c8eca2b1-e625-4fb4-a89a-1ed3cd0d7858", + "owned-node-edge-point": [ + { + "uuid": "61b25021-f81f-4370-951b-21e2388f541f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211216" + }, + { + "value-name": "topology-node-local-id", + "value": "211216" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ddfb0b66-2a30-43cc-8ece-f955ad51a6dc", + "owned-node-edge-point": [ + { + "uuid": "9c91c2d5-5df9-4de0-8ef7-2951d01a1682", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211217" + }, + { + "value-name": "topology-node-local-id", + "value": "211217" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ef9e564f-87f4-47e2-a97d-7d99109ffb17", + "owned-node-edge-point": [ + { + "uuid": "41896078-9e80-464c-a674-744f5547d254", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211218" + }, + { + "value-name": "topology-node-local-id", + "value": "211218" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ea62cc3c-4006-41c0-9491-2748d9563390", + "owned-node-edge-point": [ + { + "uuid": "6b39779b-ee72-4f52-9cc9-10c7a16edd2f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211219" + }, + { + "value-name": "topology-node-local-id", + "value": "211219" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "67426172-6110-4903-b762-44190b8f380a", + "owned-node-edge-point": [ + { + "uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21121" + } + ] + }, + { + "uuid": "da6edddf-ec69-4119-8049-b920143dd0be", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21121" + }, + { + "value-name": "topology-node-local-id", + "value": "21121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d864ac04-1d66-4fd7-ad5e-1d6fe9d8c2f6", + "owned-node-edge-point": [ + { + "uuid": "5189ca2e-38b0-443b-bf7e-cdb0257c5316", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211221" + }, + { + "value-name": "topology-node-local-id", + "value": "211221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3bbe734f-2561-4862-8f6a-f2046fc442fb", + "owned-node-edge-point": [ + { + "uuid": "9128125a-a2ac-4385-8eab-bd0d1f3cb696", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211222" + }, + { + "value-name": "topology-node-local-id", + "value": "211222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b52645e1-3d86-4497-a101-c647da29c005", + "owned-node-edge-point": [ + { + "uuid": "f695e8b9-1c8f-4f0a-96ed-bca986436da9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211223" + }, + { + "value-name": "topology-node-local-id", + "value": "211223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e43c7177-edfe-45f0-957d-2ab36c234d1c", + "owned-node-edge-point": [ + { + "uuid": "803d5b8a-1764-412f-a26e-5117cd0e56b4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211224" + }, + { + "value-name": "topology-node-local-id", + "value": "211224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "66a0acd3-1693-4532-a55a-a00abe748cb6", + "owned-node-edge-point": [ + { + "uuid": "598ca6ee-9d38-4ecf-956e-5967cda1a668", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211225" + }, + { + "value-name": "topology-node-local-id", + "value": "211225" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8e23dbbd-7ec6-4fd4-a4e3-9d65af8fc9c0", + "owned-node-edge-point": [ + { + "uuid": "668db232-520f-4faf-b144-9cc0c548426c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211226" + }, + { + "value-name": "topology-node-local-id", + "value": "211226" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "93559594-7286-4b7b-80a9-1e292161a905", + "owned-node-edge-point": [ + { + "uuid": "f1c0298b-6097-47cd-83c3-7c845c6b9ee4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211227" + }, + { + "value-name": "topology-node-local-id", + "value": "211227" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c31b54b2-84ec-4787-b8b4-10588724f922", + "owned-node-edge-point": [ + { + "uuid": "f070fcbc-7033-4817-9982-00c2f71a2b75", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211228" + }, + { + "value-name": "topology-node-local-id", + "value": "211228" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e033a890-30e5-4e93-9557-7782c0a401eb", + "owned-node-edge-point": [ + { + "uuid": "60a02adc-25d6-4eac-83f0-0d19505c949c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211229" + }, + { + "value-name": "topology-node-local-id", + "value": "211229" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "owned-node-edge-point": [ + { + "uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21122" + } + ] + }, + { + "uuid": "afc2cd23-167e-4b63-bab2-b898d40f1dc5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21122" + }, + { + "value-name": "topology-node-local-id", + "value": "21122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "00bb27cc-4ae6-4aa6-b485-feafd27dd140", + "owned-node-edge-point": [ + { + "uuid": "c35b5415-7f9c-4db6-9ddc-49c4810dc54d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211231" + }, + { + "value-name": "topology-node-local-id", + "value": "211231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8e4c756a-cd56-4d4a-85a8-bcea5df494aa", + "owned-node-edge-point": [ + { + "uuid": "bf0eb2b3-0150-431e-b4d1-6453f9deb2da", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211232" + }, + { + "value-name": "topology-node-local-id", + "value": "211232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c072728b-2b12-4947-acb6-9b34cdec31e6", + "owned-node-edge-point": [ + { + "uuid": "a939656e-c0bf-455b-b0da-e9386972880a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211233" + }, + { + "value-name": "topology-node-local-id", + "value": "211233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "76b0608e-3b25-49a5-bc20-f9d020ddaf60", + "owned-node-edge-point": [ + { + "uuid": "1fe0df17-21ac-4170-9272-e2c6891f12f1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211234" + }, + { + "value-name": "topology-node-local-id", + "value": "211234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "021b4ad0-d381-4eae-b209-25aed3d89e13", + "owned-node-edge-point": [ + { + "uuid": "b3cbabc3-f6c3-4194-b894-5dd1c2da2e35", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211235" + }, + { + "value-name": "topology-node-local-id", + "value": "211235" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4162a601-903c-4c18-a8f2-6b779d09dadc", + "owned-node-edge-point": [ + { + "uuid": "8eaca99d-3441-44ea-8759-04a5ca4d5868", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211236" + }, + { + "value-name": "topology-node-local-id", + "value": "211236" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d8168e7b-0970-40c8-9a89-e2cebdfe043e", + "owned-node-edge-point": [ + { + "uuid": "93c55bd1-2533-436d-bb05-c94d33413843", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211237" + }, + { + "value-name": "topology-node-local-id", + "value": "211237" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2bef48c7-a175-447b-94c6-72cc61dc3cef", + "owned-node-edge-point": [ + { + "uuid": "5504bf93-95b9-4863-80b5-0bba70e1ad76", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211238" + }, + { + "value-name": "topology-node-local-id", + "value": "211238" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9b707177-7cc6-4d95-bbe8-fd22580b794b", + "owned-node-edge-point": [ + { + "uuid": "a6ca933f-68a8-445e-a0b4-26ad7a512083", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211239" + }, + { + "value-name": "topology-node-local-id", + "value": "211239" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "owned-node-edge-point": [ + { + "uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21123" + } + ] + }, + { + "uuid": "d6335092-2ff8-4889-a7d1-ff74da7fed4c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21123" + }, + { + "value-name": "topology-node-local-id", + "value": "21123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ef47f7d6-1d06-49c5-88db-19238cc04a5e", + "owned-node-edge-point": [ + { + "uuid": "06f773e3-2f5d-4f75-98a7-60c9f6c59c4d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211241" + }, + { + "value-name": "topology-node-local-id", + "value": "211241" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "246f761d-1ada-4ed5-819f-7123cb324255", + "owned-node-edge-point": [ + { + "uuid": "e822dd5e-bfb9-48ae-a860-781ff54180ef", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211242" + }, + { + "value-name": "topology-node-local-id", + "value": "211242" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b1901fa0-bfc6-4d51-8a09-0608de6ce626", + "owned-node-edge-point": [ + { + "uuid": "86f1feb3-aa86-4077-b67f-f1e1f4f229a5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211243" + }, + { + "value-name": "topology-node-local-id", + "value": "211243" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "21820bd8-e9e9-49a3-84fe-189909d56596", + "owned-node-edge-point": [ + { + "uuid": "6e98be9a-e3c2-425d-8850-e57ba9c06bd1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211244" + }, + { + "value-name": "topology-node-local-id", + "value": "211244" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d4b553c4-5618-4c65-a405-8815ce8d6a59", + "owned-node-edge-point": [ + { + "uuid": "24b1972d-c75b-4aa1-8c44-43eca7f52519", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211245" + }, + { + "value-name": "topology-node-local-id", + "value": "211245" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "87c6eb77-ee16-4b42-8c1f-b5d5fcde12b0", + "owned-node-edge-point": [ + { + "uuid": "582bc91d-e6ed-4cbc-beb5-1e8dc807d1b8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211246" + }, + { + "value-name": "topology-node-local-id", + "value": "211246" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5ba1521e-2d2a-42c2-a713-adfb04af5522", + "owned-node-edge-point": [ + { + "uuid": "77b8be06-aec0-4b07-ba90-7e6a27a6ecc6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211247" + }, + { + "value-name": "topology-node-local-id", + "value": "211247" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9bd6ad50-c2ad-4e04-b84e-d8ca8575a702", + "owned-node-edge-point": [ + { + "uuid": "64acc004-d1bd-4b9c-a4c4-b5741d390730", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211248" + }, + { + "value-name": "topology-node-local-id", + "value": "211248" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "229184df-6164-4577-8ec2-a5b64d3a1b28", + "owned-node-edge-point": [ + { + "uuid": "be080c03-e718-41f0-b1a3-e5500b8896e4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211249" + }, + { + "value-name": "topology-node-local-id", + "value": "211249" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "owned-node-edge-point": [ + { + "uuid": "3c578209-0007-47db-a494-d8fa091b6cbe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21124" + } + ] + }, + { + "uuid": "eff27572-e2a0-43a0-98c3-4e966433c269", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21124" + }, + { + "value-name": "topology-node-local-id", + "value": "21124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a349d719-8785-4244-93d6-fe7ab63cbf35", + "owned-node-edge-point": [ + { + "uuid": "bbcc01b3-e8f3-4406-9cfb-194f858417be", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "bbcc01b3-e8f3-4406-9cfb-194f858417be" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2112" + } + ] + }, + { + "uuid": "814413c0-3ca1-4cdf-9528-932a45285053", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2112" + }, + { + "value-name": "topology-node-local-id", + "value": "2112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "63a90f82-242d-42eb-80e1-94d96889425a", + "owned-node-edge-point": [ + { + "uuid": "ed6f873d-8fe1-4e5b-a128-d76ee32f15ba", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211311" + }, + { + "value-name": "topology-node-local-id", + "value": "211311" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "03d8bc49-b816-4353-8a90-b890d1bcf233", + "owned-node-edge-point": [ + { + "uuid": "8f116ef3-5246-4a5e-a06e-a503f716f7c3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211312" + }, + { + "value-name": "topology-node-local-id", + "value": "211312" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a2aff9bb-c5c8-462e-b290-234b1bbe24ee", + "owned-node-edge-point": [ + { + "uuid": "be92556a-e778-40e0-aa4e-1cbb9c258f49", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211313" + }, + { + "value-name": "topology-node-local-id", + "value": "211313" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d6893cee-3baa-48a5-b711-5b3eee541db8", + "owned-node-edge-point": [ + { + "uuid": "ada95eb9-1ea3-440b-b1d1-c0df373174c4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211314" + }, + { + "value-name": "topology-node-local-id", + "value": "211314" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6191a587-4447-4289-8ef6-73bf32890f69", + "owned-node-edge-point": [ + { + "uuid": "e394a91c-845a-4453-a709-b01e14e90fb6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211315" + }, + { + "value-name": "topology-node-local-id", + "value": "211315" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e35a6fc5-c32f-45e2-8a42-512c0979c826", + "owned-node-edge-point": [ + { + "uuid": "3572517d-ad31-4625-ac4b-507cff611eb4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211316" + }, + { + "value-name": "topology-node-local-id", + "value": "211316" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "620fa665-14c3-4427-a6c4-bf4f1881b72e", + "owned-node-edge-point": [ + { + "uuid": "09499569-ea62-4de7-96df-873e46f87910", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211317" + }, + { + "value-name": "topology-node-local-id", + "value": "211317" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a5b507b1-ca14-4fcb-a506-97d5a497c712", + "owned-node-edge-point": [ + { + "uuid": "fcaf8280-54a0-4cbc-8dd8-19ba0b46bc8a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211318" + }, + { + "value-name": "topology-node-local-id", + "value": "211318" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8d5cf156-ffb7-4ac2-8238-ebbfa4831c53", + "owned-node-edge-point": [ + { + "uuid": "64f8ef4d-9538-4f7f-a6ec-015ca549316b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211319" + }, + { + "value-name": "topology-node-local-id", + "value": "211319" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "owned-node-edge-point": [ + { + "uuid": "93312bbe-da74-4aef-8fee-f22e2f609512", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21131" + } + ] + }, + { + "uuid": "0d8bf402-a6ae-4b84-bda3-f0bd84bd8c59", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21131" + }, + { + "value-name": "topology-node-local-id", + "value": "21131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f0d79b68-2291-48e7-88f8-53079e8d9983", + "owned-node-edge-point": [ + { + "uuid": "71c7284b-2b76-4b63-8582-50a50f7ac53f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211321" + }, + { + "value-name": "topology-node-local-id", + "value": "211321" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5847b6d6-3a46-4e09-8129-2d606d8867ad", + "owned-node-edge-point": [ + { + "uuid": "202cd1ad-8038-4bbf-9f64-d0c3b59d2a40", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211322" + }, + { + "value-name": "topology-node-local-id", + "value": "211322" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9e6ea1f4-6603-4223-9a14-8e8ca41c0afa", + "owned-node-edge-point": [ + { + "uuid": "efa2dc74-c4ee-40aa-b581-e2630b4cff26", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211323" + }, + { + "value-name": "topology-node-local-id", + "value": "211323" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f6c600d5-0406-4fc8-b108-162878a5894d", + "owned-node-edge-point": [ + { + "uuid": "826ae20c-04e3-4008-a33d-896a47404c2b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211324" + }, + { + "value-name": "topology-node-local-id", + "value": "211324" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0ece0e14-ef49-4dc6-a9c2-01f8485eb6be", + "owned-node-edge-point": [ + { + "uuid": "59f3e870-3a10-40e1-8a25-ceb52c619502", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211325" + }, + { + "value-name": "topology-node-local-id", + "value": "211325" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c82fbd65-c3f5-4f31-b5af-1b3ab057dcae", + "owned-node-edge-point": [ + { + "uuid": "3eef55f0-57b0-406f-a806-5743df12e67d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211326" + }, + { + "value-name": "topology-node-local-id", + "value": "211326" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d2a7be2a-7b58-4de9-bd39-cb6b3f87b6f2", + "owned-node-edge-point": [ + { + "uuid": "95200175-f2c5-4578-85e5-63b222423815", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211327" + }, + { + "value-name": "topology-node-local-id", + "value": "211327" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fac91e77-755a-4948-8987-7796717ad833", + "owned-node-edge-point": [ + { + "uuid": "8d5b58b6-22ed-48a6-8e8f-910ba8a79706", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211328" + }, + { + "value-name": "topology-node-local-id", + "value": "211328" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c6c10692-979e-4d95-b9e0-03eca0dc1dd3", + "owned-node-edge-point": [ + { + "uuid": "65d233c8-20c8-4361-b3d0-32e5dede8add", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211329" + }, + { + "value-name": "topology-node-local-id", + "value": "211329" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "owned-node-edge-point": [ + { + "uuid": "567ed113-4860-4724-8419-4544f306fcaa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21132" + } + ] + }, + { + "uuid": "4cc219ee-0f09-4740-a393-e29de700dce9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21132" + }, + { + "value-name": "topology-node-local-id", + "value": "21132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "21c5c289-d4d0-4d4c-abdd-32bc532ad02b", + "owned-node-edge-point": [ + { + "uuid": "d729b804-7cdc-4550-9f28-35c23c39173f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211331" + }, + { + "value-name": "topology-node-local-id", + "value": "211331" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d2a71f66-7ebd-4618-bce9-321eec5ad9b3", + "owned-node-edge-point": [ + { + "uuid": "a3c10650-6c3f-4e27-8648-557ba3068c2d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211332" + }, + { + "value-name": "topology-node-local-id", + "value": "211332" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "99b1e88c-a442-4389-872c-5e5cb2118c8d", + "owned-node-edge-point": [ + { + "uuid": "a45a9d5d-64c2-42d9-af7a-bafd64393e08", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211333" + }, + { + "value-name": "topology-node-local-id", + "value": "211333" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "da02078d-55ff-4478-ba50-316be51e2004", + "owned-node-edge-point": [ + { + "uuid": "d18529c2-b8af-4073-b316-d1a9072660ad", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211334" + }, + { + "value-name": "topology-node-local-id", + "value": "211334" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "897b339a-588e-4ff3-81f9-fed7fbfe9f68", + "owned-node-edge-point": [ + { + "uuid": "82257411-8cc2-4a0b-8875-3b5d8a3ddbff", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211335" + }, + { + "value-name": "topology-node-local-id", + "value": "211335" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "afb71026-3029-4009-86c1-c2164989d5ea", + "owned-node-edge-point": [ + { + "uuid": "6c42a934-2f9c-4308-963d-201a63b0a05b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211336" + }, + { + "value-name": "topology-node-local-id", + "value": "211336" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "48760db9-4804-4897-8566-df3950211d08", + "owned-node-edge-point": [ + { + "uuid": "2d0a7884-989c-4616-a924-87f41f215556", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211337" + }, + { + "value-name": "topology-node-local-id", + "value": "211337" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4eb67f60-ebd4-4e17-906c-e8a679d250f0", + "owned-node-edge-point": [ + { + "uuid": "b5259b13-e342-4741-affe-7ecd4d2ea3fe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211338" + }, + { + "value-name": "topology-node-local-id", + "value": "211338" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a5439c0c-ebdb-4b55-a531-3433033454ee", + "owned-node-edge-point": [ + { + "uuid": "7c643d90-6bc3-4feb-9931-b88e67325c69", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211339" + }, + { + "value-name": "topology-node-local-id", + "value": "211339" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "owned-node-edge-point": [ + { + "uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21133" + } + ] + }, + { + "uuid": "a4d93bf8-8742-4543-9d6e-cce9d77cd544", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21133" + }, + { + "value-name": "topology-node-local-id", + "value": "21133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a0d9eee2-62af-448b-9f8a-22ba514aebb3", + "owned-node-edge-point": [ + { + "uuid": "4654140c-ec64-40ef-ab3e-4f4788c5761b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211341" + }, + { + "value-name": "topology-node-local-id", + "value": "211341" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e08343d2-0ac1-43d3-9d4d-0549edc726df", + "owned-node-edge-point": [ + { + "uuid": "444b8a30-8579-4f7e-94f3-9765292bcf40", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211342" + }, + { + "value-name": "topology-node-local-id", + "value": "211342" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c8bd61fa-6983-4f8f-9e9a-680acefc1ba6", + "owned-node-edge-point": [ + { + "uuid": "a09f71af-a756-456b-96d0-5fc0d0fc2731", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211343" + }, + { + "value-name": "topology-node-local-id", + "value": "211343" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "926a470a-2091-47ef-90b5-6dce1af48a22", + "owned-node-edge-point": [ + { + "uuid": "03856d61-063a-48b1-8ae7-070440faaf50", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211344" + }, + { + "value-name": "topology-node-local-id", + "value": "211344" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4de3e145-a92e-40fc-aa81-46bebb8994d1", + "owned-node-edge-point": [ + { + "uuid": "054704c3-885c-42fb-ad75-42501361199c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211345" + }, + { + "value-name": "topology-node-local-id", + "value": "211345" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f75da132-5239-41a2-98b3-72f2834b02fc", + "owned-node-edge-point": [ + { + "uuid": "713185f4-feac-4c82-bcca-ba99b92a4bf5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211346" + }, + { + "value-name": "topology-node-local-id", + "value": "211346" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "83a22cfd-7906-4452-baf2-06dc2d580ca5", + "owned-node-edge-point": [ + { + "uuid": "4121bef2-d3ee-48a7-80e8-b5c73d8dce37", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211347" + }, + { + "value-name": "topology-node-local-id", + "value": "211347" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "798ac582-e89f-4286-92aa-02b87dcb77af", + "owned-node-edge-point": [ + { + "uuid": "941c5ccc-7039-4995-8a42-3f99a8846a11", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211348" + }, + { + "value-name": "topology-node-local-id", + "value": "211348" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9e207317-62c9-404d-bba8-d8584216410a", + "owned-node-edge-point": [ + { + "uuid": "2604578b-e25e-42cf-b3b5-11ef73d758e2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-211349" + }, + { + "value-name": "topology-node-local-id", + "value": "211349" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "owned-node-edge-point": [ + { + "uuid": "27626844-1668-4793-8e24-47e64eed200f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21134" + } + ] + }, + { + "uuid": "e8383994-88e2-438d-a42c-cac0e81b80ee", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21134" + }, + { + "value-name": "topology-node-local-id", + "value": "21134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "31351e2e-ce67-4268-904d-087f8aac6889", + "owned-node-edge-point": [ + { + "uuid": "2e69837e-ac20-4dcb-bd15-97bef66c1edc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "2e69837e-ac20-4dcb-bd15-97bef66c1edc" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2113" + } + ] + }, + { + "uuid": "11d2b80e-d4bc-46c0-9f98-36044e8fcce5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2113" + }, + { + "value-name": "topology-node-local-id", + "value": "2113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9f8910a7-dddb-4fb3-9654-8a98a6f9c808", + "owned-node-edge-point": [ + { + "uuid": "9522ff67-c075-4d09-8983-76cd62c86c35", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "9522ff67-c075-4d09-8983-76cd62c86c35" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-CU-UP-211" + } + ] + }, + { + "uuid": "582e11af-db74-457b-b44e-dc9179ad6601", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-CU-UP-211" + }, + { + "value-name": "topology-node-local-id", + "value": "211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-cu-up-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d81a10d8-d545-44dd-90a5-7e86c36a9fd0", + "owned-node-edge-point": [ + { + "uuid": "adb7de62-62b1-4b6e-8866-0a54a18708bc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212111" + }, + { + "value-name": "topology-node-local-id", + "value": "212111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e774e54a-53ab-4525-963b-29b3d372dbd1", + "owned-node-edge-point": [ + { + "uuid": "5bd8fdac-937c-406a-a678-d577c8dc8ee6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212112" + }, + { + "value-name": "topology-node-local-id", + "value": "212112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "41067721-66c0-4e2d-b97c-c257f56bb7c9", + "owned-node-edge-point": [ + { + "uuid": "69930fea-500c-4eea-b59c-f5a7c4849fe8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212113" + }, + { + "value-name": "topology-node-local-id", + "value": "212113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2c1a547a-1b77-4248-b2c3-ede45456ac1b", + "owned-node-edge-point": [ + { + "uuid": "c29abb2f-15c2-45a2-b95d-178ad3ef2e5d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212114" + }, + { + "value-name": "topology-node-local-id", + "value": "212114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "907d1aa7-a5d3-471f-9e47-7358bd231d27", + "owned-node-edge-point": [ + { + "uuid": "2ed9eb30-9ae0-4929-ab7e-39a0014cf272", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212115" + }, + { + "value-name": "topology-node-local-id", + "value": "212115" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5a9fb6c5-8777-46d1-89b0-e3f07687b693", + "owned-node-edge-point": [ + { + "uuid": "6e498a0d-8c2d-40ad-ad91-38df26ebdfd4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212116" + }, + { + "value-name": "topology-node-local-id", + "value": "212116" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "199607eb-04bd-434e-a0bd-7a20808701d5", + "owned-node-edge-point": [ + { + "uuid": "3ce2322e-cf58-44c3-8abc-85b914acb3f8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212117" + }, + { + "value-name": "topology-node-local-id", + "value": "212117" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "04690da5-43f7-4278-b540-0a7c12e63d1b", + "owned-node-edge-point": [ + { + "uuid": "b2b6ba6d-905a-408f-b91f-2a407a8fc6fc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212118" + }, + { + "value-name": "topology-node-local-id", + "value": "212118" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9b26495f-5c23-43b2-8a84-8d7cd8ca8c09", + "owned-node-edge-point": [ + { + "uuid": "4db30cb4-fda2-4b35-b4f2-3fd0574519d9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212119" + }, + { + "value-name": "topology-node-local-id", + "value": "212119" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "owned-node-edge-point": [ + { + "uuid": "b33910c1-7fd9-404f-8257-5daacee3281d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21211" + } + ] + }, + { + "uuid": "b8861b38-e22a-4c5c-88b4-fd8f09409f80", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21211" + }, + { + "value-name": "topology-node-local-id", + "value": "21211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "63aefb97-0129-4e42-afa9-5594da32b6ec", + "owned-node-edge-point": [ + { + "uuid": "771ff675-a537-4bfe-95fe-bb50e54bf2fa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212121" + }, + { + "value-name": "topology-node-local-id", + "value": "212121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "27e116a7-7581-4ae5-a510-b79aa7a80667", + "owned-node-edge-point": [ + { + "uuid": "ea30a30b-b320-486c-956b-b9811fba5af4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212122" + }, + { + "value-name": "topology-node-local-id", + "value": "212122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3a75490b-577b-4808-a0e4-3eb700daeede", + "owned-node-edge-point": [ + { + "uuid": "330f41b7-d9fc-47c0-ad41-ab3f859203b7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212123" + }, + { + "value-name": "topology-node-local-id", + "value": "212123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "725cfa4b-0aca-4ae6-b406-2a8f54e8767a", + "owned-node-edge-point": [ + { + "uuid": "2b89cc02-35ae-434e-928c-824218642aea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212124" + }, + { + "value-name": "topology-node-local-id", + "value": "212124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9d2b6d56-19b3-4d97-ab55-5e5f7b1dd52d", + "owned-node-edge-point": [ + { + "uuid": "11d0af3a-f6ad-4f1f-8e12-619a3295dd56", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212125" + }, + { + "value-name": "topology-node-local-id", + "value": "212125" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "15134b18-c1ac-404b-8039-e63c7f13e5d2", + "owned-node-edge-point": [ + { + "uuid": "8a573470-7d6f-40c6-8d9b-a0ec09a7b118", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212126" + }, + { + "value-name": "topology-node-local-id", + "value": "212126" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "10fee77d-bd75-4fbf-b12f-0a3c0d41e090", + "owned-node-edge-point": [ + { + "uuid": "1334fcd4-0857-4f43-91d8-948fccce9f94", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212127" + }, + { + "value-name": "topology-node-local-id", + "value": "212127" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "953963de-f2ac-418e-a5bf-8a97e0153791", + "owned-node-edge-point": [ + { + "uuid": "8ff51441-d27e-4e56-8309-1f8afe87c0b6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212128" + }, + { + "value-name": "topology-node-local-id", + "value": "212128" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7fb9e6d8-f9a5-45e0-acca-910674ff5d58", + "owned-node-edge-point": [ + { + "uuid": "9df104cf-f485-4b98-9d70-e84f0d113b72", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212129" + }, + { + "value-name": "topology-node-local-id", + "value": "212129" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "owned-node-edge-point": [ + { + "uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21212" + } + ] + }, + { + "uuid": "1e5b5c3f-16a9-4c3c-ad74-d6a25b5f51cb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21212" + }, + { + "value-name": "topology-node-local-id", + "value": "21212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dcda6aad-939d-4beb-a4c6-380862bd5f23", + "owned-node-edge-point": [ + { + "uuid": "8f193f56-a680-440b-afde-11ebfe2ba97e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212131" + }, + { + "value-name": "topology-node-local-id", + "value": "212131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f11af9f4-3222-4026-bfd8-b6220e594957", + "owned-node-edge-point": [ + { + "uuid": "acdd8a02-0229-4c27-b153-96ee427d6b02", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212132" + }, + { + "value-name": "topology-node-local-id", + "value": "212132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "52074485-198d-4bca-96b5-4e197e5c037f", + "owned-node-edge-point": [ + { + "uuid": "7712243b-d042-4901-bfac-9441ffdfa23c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212133" + }, + { + "value-name": "topology-node-local-id", + "value": "212133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5ac982a7-59d6-4624-b183-6710b45a342a", + "owned-node-edge-point": [ + { + "uuid": "3b326536-4683-443b-ae95-9d3f6b0b4725", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212134" + }, + { + "value-name": "topology-node-local-id", + "value": "212134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "29d43056-6806-45ea-a831-18310517b907", + "owned-node-edge-point": [ + { + "uuid": "0d891b27-b225-437d-bb1f-c25313f33836", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212135" + }, + { + "value-name": "topology-node-local-id", + "value": "212135" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6a67ce38-80e6-472a-93a5-410da6942115", + "owned-node-edge-point": [ + { + "uuid": "c5a2224d-d072-4ea5-94ff-34109a3ae10b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212136" + }, + { + "value-name": "topology-node-local-id", + "value": "212136" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "055cc5cf-0a96-42b3-af69-e85afdfa1eb9", + "owned-node-edge-point": [ + { + "uuid": "f4351103-4f6e-4939-abc0-6f4bb6531a4b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212137" + }, + { + "value-name": "topology-node-local-id", + "value": "212137" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3ce1602f-8246-4242-81cc-d44f813a3652", + "owned-node-edge-point": [ + { + "uuid": "86c7c2ac-d86a-4884-8418-1dd61260839f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212138" + }, + { + "value-name": "topology-node-local-id", + "value": "212138" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1f67c012-6a63-488b-88df-9bd61a46eada", + "owned-node-edge-point": [ + { + "uuid": "2ec3cc5c-c493-4d6e-aa8a-642f74842200", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212139" + }, + { + "value-name": "topology-node-local-id", + "value": "212139" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "owned-node-edge-point": [ + { + "uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21213" + } + ] + }, + { + "uuid": "ed7af4dc-53b7-485d-9f0d-61b5d091f356", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21213" + }, + { + "value-name": "topology-node-local-id", + "value": "21213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f5a78043-6fac-4e73-b0d0-ab3118f76517", + "owned-node-edge-point": [ + { + "uuid": "8dbb9094-927f-4ca7-8102-9b5e2d00373c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212141" + }, + { + "value-name": "topology-node-local-id", + "value": "212141" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4a76835b-cc2e-4969-a9cd-fa171ba42c08", + "owned-node-edge-point": [ + { + "uuid": "8c754b34-a0de-47ce-8c3c-667837428fb2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212142" + }, + { + "value-name": "topology-node-local-id", + "value": "212142" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7d549e07-5f1a-4950-a9cf-e52c8612abfa", + "owned-node-edge-point": [ + { + "uuid": "51a54be4-796b-4c4f-a5da-a1782e1baaa2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212143" + }, + { + "value-name": "topology-node-local-id", + "value": "212143" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "085b4075-e88e-419f-9da5-b87185c31a30", + "owned-node-edge-point": [ + { + "uuid": "48b407ff-0729-4bcc-b582-d3de8d6662f5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212144" + }, + { + "value-name": "topology-node-local-id", + "value": "212144" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ea2ed462-7bad-4984-82cf-01b0937849e0", + "owned-node-edge-point": [ + { + "uuid": "b18e2b5f-c19f-4b9e-b8fe-a731a96dd83f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212145" + }, + { + "value-name": "topology-node-local-id", + "value": "212145" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "34797c57-a407-4718-b8aa-5e70920ae627", + "owned-node-edge-point": [ + { + "uuid": "750b1bb2-9ed0-4a98-b459-db8a859c630d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212146" + }, + { + "value-name": "topology-node-local-id", + "value": "212146" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "255d2aad-707d-46af-ad8d-9756b371e854", + "owned-node-edge-point": [ + { + "uuid": "829ccfa1-fca0-41a8-a605-6d1e5ddd330d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212147" + }, + { + "value-name": "topology-node-local-id", + "value": "212147" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4301a0d2-a450-4aec-b5e5-2d3cc8e13e8f", + "owned-node-edge-point": [ + { + "uuid": "e2b20395-0a33-4585-b4c4-4e95222138bb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212148" + }, + { + "value-name": "topology-node-local-id", + "value": "212148" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "117b642e-c595-4f02-8644-348da6784dfb", + "owned-node-edge-point": [ + { + "uuid": "ca6b4ae2-44dd-4b3a-8879-d81a41f09037", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212149" + }, + { + "value-name": "topology-node-local-id", + "value": "212149" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "owned-node-edge-point": [ + { + "uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21214" + } + ] + }, + { + "uuid": "ac8c8186-b6ee-4846-9cd6-3ee3f9d12855", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21214" + }, + { + "value-name": "topology-node-local-id", + "value": "21214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "08a24045-c59d-4a58-a4bd-fb8c95408c0a", + "owned-node-edge-point": [ + { + "uuid": "5240679c-3e94-4602-9360-e2a924a1b3fa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "5240679c-3e94-4602-9360-e2a924a1b3fa" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2121" + } + ] + }, + { + "uuid": "8565b3b4-8d7c-4e52-ba6a-c450a19cc2bb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2121" + }, + { + "value-name": "topology-node-local-id", + "value": "2121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "751b8f63-f9db-4472-bbae-773ca22e3926", + "owned-node-edge-point": [ + { + "uuid": "cbaa80db-bbd0-4448-8ecc-da0c557620d0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212211" + }, + { + "value-name": "topology-node-local-id", + "value": "212211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ae9eeb2a-b7e6-442a-b999-0f2441047c6a", + "owned-node-edge-point": [ + { + "uuid": "92dc8ea8-22ba-408b-803f-95be2e7fe143", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212212" + }, + { + "value-name": "topology-node-local-id", + "value": "212212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bb172cd5-1a2c-4351-a424-a7c5d748ccde", + "owned-node-edge-point": [ + { + "uuid": "a4b451b7-ab06-4077-a1f5-b2775f7cb824", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212213" + }, + { + "value-name": "topology-node-local-id", + "value": "212213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4dfa4a6f-ab8d-4f15-b704-b071fb9beee2", + "owned-node-edge-point": [ + { + "uuid": "863ddf8b-4392-4269-be5a-f9e98b1a51fc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212214" + }, + { + "value-name": "topology-node-local-id", + "value": "212214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "09bc43fc-4821-45cd-9202-2f7a8b18a56f", + "owned-node-edge-point": [ + { + "uuid": "11197110-234b-445a-9e21-20cf64039998", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212215" + }, + { + "value-name": "topology-node-local-id", + "value": "212215" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "62b9fed0-1a73-4641-adbe-3b385ea64498", + "owned-node-edge-point": [ + { + "uuid": "eea9ecb6-30c8-4377-8aea-6fc2aac1a557", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212216" + }, + { + "value-name": "topology-node-local-id", + "value": "212216" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9b879737-1ad3-4926-a42a-3a448641628e", + "owned-node-edge-point": [ + { + "uuid": "48bb5a5e-1478-4121-b729-1caa7bd1f77b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212217" + }, + { + "value-name": "topology-node-local-id", + "value": "212217" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "018834cb-9a75-4671-aba0-fac13b203588", + "owned-node-edge-point": [ + { + "uuid": "6763d7da-afb1-49f2-bf8f-978f075660ea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212218" + }, + { + "value-name": "topology-node-local-id", + "value": "212218" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5b42aa99-3d01-47e5-a9c4-629428da803b", + "owned-node-edge-point": [ + { + "uuid": "ba4c6e11-91ab-4d47-bd9e-ae2a9007e23d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212219" + }, + { + "value-name": "topology-node-local-id", + "value": "212219" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "owned-node-edge-point": [ + { + "uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21221" + } + ] + }, + { + "uuid": "1a3f8526-c210-4876-b32f-d44c425d77a4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21221" + }, + { + "value-name": "topology-node-local-id", + "value": "21221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7e4cfb52-4fcd-4cec-9c59-546486d6b4ff", + "owned-node-edge-point": [ + { + "uuid": "15b0cc2b-29c8-4c20-a127-59354037de8d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212221" + }, + { + "value-name": "topology-node-local-id", + "value": "212221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ad025b97-11d2-4a94-8a9e-a22dd2f3ff0b", + "owned-node-edge-point": [ + { + "uuid": "940e0fdf-2eee-4077-aea8-59a6a5c0b16d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212222" + }, + { + "value-name": "topology-node-local-id", + "value": "212222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "176d398b-0cb1-4d0d-91f0-f96ff3e43958", + "owned-node-edge-point": [ + { + "uuid": "4db85cbe-4951-40b7-af72-b78e1d625122", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212223" + }, + { + "value-name": "topology-node-local-id", + "value": "212223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6c1e6ae7-2b63-4a6f-a778-4e910c3806c5", + "owned-node-edge-point": [ + { + "uuid": "caf00f54-8424-4ae6-afa8-a0f74aa86918", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212224" + }, + { + "value-name": "topology-node-local-id", + "value": "212224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3b8b2a5c-0964-4710-b08d-4458a86ce506", + "owned-node-edge-point": [ + { + "uuid": "4015ff33-30d5-414b-8716-a391d96c7874", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212225" + }, + { + "value-name": "topology-node-local-id", + "value": "212225" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e1de2808-1297-456b-a277-c972a088785e", + "owned-node-edge-point": [ + { + "uuid": "8f5c21e4-1b94-4aad-a15a-23ef8ea3ce25", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212226" + }, + { + "value-name": "topology-node-local-id", + "value": "212226" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "aa4324f7-d46b-4b18-ae8d-b1840d4d9ccf", + "owned-node-edge-point": [ + { + "uuid": "b3035423-dbc4-40eb-81fc-6855556789fa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212227" + }, + { + "value-name": "topology-node-local-id", + "value": "212227" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a3177698-80f9-4997-99cc-80424304d92f", + "owned-node-edge-point": [ + { + "uuid": "5477498e-dfd0-417f-a606-fab0a39ccf98", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212228" + }, + { + "value-name": "topology-node-local-id", + "value": "212228" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9146402d-4ef3-4455-8cdd-621d7b51a976", + "owned-node-edge-point": [ + { + "uuid": "7eaf4b9e-3310-49e8-bca3-b2d680cf8e0d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212229" + }, + { + "value-name": "topology-node-local-id", + "value": "212229" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "owned-node-edge-point": [ + { + "uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21222" + } + ] + }, + { + "uuid": "da23b0a3-2a58-46d7-a050-67e78b4684d8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21222" + }, + { + "value-name": "topology-node-local-id", + "value": "21222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "de85493d-c055-4376-bd57-389ed5f248e7", + "owned-node-edge-point": [ + { + "uuid": "b5f3ccb2-d6c5-4831-b715-c80a2e849215", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212231" + }, + { + "value-name": "topology-node-local-id", + "value": "212231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bcfe2daf-f279-442b-840d-2da40011323e", + "owned-node-edge-point": [ + { + "uuid": "781c8f05-2454-4ec6-b890-878f7017101a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212232" + }, + { + "value-name": "topology-node-local-id", + "value": "212232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f9935111-ef06-4719-adf7-2d16037f258e", + "owned-node-edge-point": [ + { + "uuid": "dc5f13dc-f1d0-4121-a904-5d83a7d5e758", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212233" + }, + { + "value-name": "topology-node-local-id", + "value": "212233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ab8f2b59-47e5-4699-b3fd-3b042aa1388d", + "owned-node-edge-point": [ + { + "uuid": "2d034dc2-a3cd-40d3-baea-6fcf3e4238fc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212234" + }, + { + "value-name": "topology-node-local-id", + "value": "212234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d4b7d457-173e-4033-bac8-2ef6e65c38cb", + "owned-node-edge-point": [ + { + "uuid": "c7adc80c-b079-4343-a407-f639dfa44a48", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212235" + }, + { + "value-name": "topology-node-local-id", + "value": "212235" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9a5bd6e9-e956-4495-b173-b654db60527a", + "owned-node-edge-point": [ + { + "uuid": "01ae92da-0c47-4b1f-9991-82ca718d414c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212236" + }, + { + "value-name": "topology-node-local-id", + "value": "212236" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a66e15f9-9e1e-4e2b-9d9f-ce59a4678a87", + "owned-node-edge-point": [ + { + "uuid": "745db41f-f526-4b90-8e2c-5a5fba5f2850", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212237" + }, + { + "value-name": "topology-node-local-id", + "value": "212237" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e484814d-2899-41af-996a-bbdab2661464", + "owned-node-edge-point": [ + { + "uuid": "14da438b-a60f-4b92-98f2-7e3e3ae3f177", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212238" + }, + { + "value-name": "topology-node-local-id", + "value": "212238" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "16ac945c-b31b-4bcc-8fc0-a28c29a44385", + "owned-node-edge-point": [ + { + "uuid": "ed980063-d592-4d26-953c-c6437911ef62", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212239" + }, + { + "value-name": "topology-node-local-id", + "value": "212239" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "owned-node-edge-point": [ + { + "uuid": "eeb650ae-753a-41a8-9496-47150c598e3e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21223" + } + ] + }, + { + "uuid": "5a5ad892-b8d7-413e-b515-6cc5e2e3ebfe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21223" + }, + { + "value-name": "topology-node-local-id", + "value": "21223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2c62e637-ca68-492e-aeb0-bdac759084bd", + "owned-node-edge-point": [ + { + "uuid": "e39f2af6-02eb-4c82-abf5-4d69cbab08a0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212241" + }, + { + "value-name": "topology-node-local-id", + "value": "212241" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e96ce0a9-63a4-4fc8-ac2b-b622f6d40600", + "owned-node-edge-point": [ + { + "uuid": "35c2fcef-4e69-4ac4-a3c8-7bb80856582a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212242" + }, + { + "value-name": "topology-node-local-id", + "value": "212242" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1ff1ac63-897f-48b7-99ba-398c59e8eaa4", + "owned-node-edge-point": [ + { + "uuid": "916d0874-785d-42ad-922d-e1b80b401262", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212243" + }, + { + "value-name": "topology-node-local-id", + "value": "212243" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f91912b2-a8e2-413a-a888-ab5aeb5938cc", + "owned-node-edge-point": [ + { + "uuid": "8e753e55-1f4e-43d6-b925-26975cdef071", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212244" + }, + { + "value-name": "topology-node-local-id", + "value": "212244" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cb07f0e0-262b-42ff-95e6-d29e7619c8ca", + "owned-node-edge-point": [ + { + "uuid": "ca3158fc-128b-48a5-ab2d-6b7760d4781e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212245" + }, + { + "value-name": "topology-node-local-id", + "value": "212245" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8d62bdc8-a3fa-48ec-9f69-6bce765c4c7e", + "owned-node-edge-point": [ + { + "uuid": "edb522cb-b9b4-4ff9-ba07-cccad1b39b73", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212246" + }, + { + "value-name": "topology-node-local-id", + "value": "212246" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "27a9ae3a-c1a7-47d4-b71f-602fd4bb3a42", + "owned-node-edge-point": [ + { + "uuid": "4497b2d3-944a-4706-b3d3-ee0687284c1b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212247" + }, + { + "value-name": "topology-node-local-id", + "value": "212247" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fdaf9b19-45b5-4924-ae05-15bcc2332664", + "owned-node-edge-point": [ + { + "uuid": "2a7b6d15-aeec-4464-aedb-a8eb0008369c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212248" + }, + { + "value-name": "topology-node-local-id", + "value": "212248" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "09b9fdaa-4ca5-46dc-abb9-c276b7e82e9c", + "owned-node-edge-point": [ + { + "uuid": "32dc038b-c280-4706-a8a8-046ce6103eec", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212249" + }, + { + "value-name": "topology-node-local-id", + "value": "212249" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "owned-node-edge-point": [ + { + "uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21224" + } + ] + }, + { + "uuid": "c19a3abb-d9d4-496c-badf-910f4388de6c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21224" + }, + { + "value-name": "topology-node-local-id", + "value": "21224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ba1f056e-e554-4727-89a6-6de7e0081354", + "owned-node-edge-point": [ + { + "uuid": "750c264e-e870-4277-84f0-fcd363b9fb17", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "750c264e-e870-4277-84f0-fcd363b9fb17" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2122" + } + ] + }, + { + "uuid": "5c17e761-6b51-4228-8159-d39087ea1343", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2122" + }, + { + "value-name": "topology-node-local-id", + "value": "2122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9f1ba576-e980-4e5f-884d-d1504c7f129a", + "owned-node-edge-point": [ + { + "uuid": "b75075a5-ddfe-4fa3-b142-e3b131e4a87e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212311" + }, + { + "value-name": "topology-node-local-id", + "value": "212311" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "db8bdd13-6947-474f-9ae6-a74a68d5e362", + "owned-node-edge-point": [ + { + "uuid": "3f208bcf-a932-43dc-92f1-0e72b7ace00b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212312" + }, + { + "value-name": "topology-node-local-id", + "value": "212312" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "63d1fe20-ad93-4d0d-8717-9d4a2008bdb0", + "owned-node-edge-point": [ + { + "uuid": "5a436772-4d70-471c-8dc9-011018a122d3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212313" + }, + { + "value-name": "topology-node-local-id", + "value": "212313" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ce28d67d-3eb8-4225-9f91-4cb8a955846d", + "owned-node-edge-point": [ + { + "uuid": "1c12105e-82e6-4e12-990f-49b28a5523d8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212314" + }, + { + "value-name": "topology-node-local-id", + "value": "212314" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a9f005b4-3839-4efa-bca8-74faea08c000", + "owned-node-edge-point": [ + { + "uuid": "57f1f422-d82d-434e-98ee-c980b268c5cc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212315" + }, + { + "value-name": "topology-node-local-id", + "value": "212315" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8fc95fd0-ddca-4e78-b199-eab408a0a912", + "owned-node-edge-point": [ + { + "uuid": "b6405dee-9fa5-4090-97ff-c88fad10b4d3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212316" + }, + { + "value-name": "topology-node-local-id", + "value": "212316" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a77cc49f-7c78-4eaf-b350-3c3fec364d2a", + "owned-node-edge-point": [ + { + "uuid": "005962ec-f645-4bcb-9114-7d8dcf71e210", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212317" + }, + { + "value-name": "topology-node-local-id", + "value": "212317" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ec95c45f-9d76-4fc7-83d1-1eeeb9fc8d77", + "owned-node-edge-point": [ + { + "uuid": "0625d2d8-949a-45b3-a9bd-89645815864f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212318" + }, + { + "value-name": "topology-node-local-id", + "value": "212318" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a0c9e4b7-b040-43c2-9e60-7cfae03b0c7a", + "owned-node-edge-point": [ + { + "uuid": "a211f8c7-6944-4abf-a60e-dadb24647691", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212319" + }, + { + "value-name": "topology-node-local-id", + "value": "212319" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "owned-node-edge-point": [ + { + "uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21231" + } + ] + }, + { + "uuid": "715708fb-291a-4d88-b516-7f0f552d09ba", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21231" + }, + { + "value-name": "topology-node-local-id", + "value": "21231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fbbc1c22-4ebe-468f-8dcb-e86193901cf3", + "owned-node-edge-point": [ + { + "uuid": "7574f8e7-74bc-4e88-ab58-e8a5322c126a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212321" + }, + { + "value-name": "topology-node-local-id", + "value": "212321" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5b7d626a-de38-4650-9ca2-a8e398e97244", + "owned-node-edge-point": [ + { + "uuid": "e10f8b83-f82b-4109-ae6e-78b8d2725e21", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212322" + }, + { + "value-name": "topology-node-local-id", + "value": "212322" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6e71df3d-8a9b-4f0b-88a0-60befe78d958", + "owned-node-edge-point": [ + { + "uuid": "bfa5844b-dcd2-45a5-a748-8a5511e6ed41", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212323" + }, + { + "value-name": "topology-node-local-id", + "value": "212323" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "daa54f9d-fbd6-410e-b901-f5564d36f775", + "owned-node-edge-point": [ + { + "uuid": "d45ef267-9419-483b-8414-2b178cb54a46", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212324" + }, + { + "value-name": "topology-node-local-id", + "value": "212324" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d27bcf7c-fb5a-4b5a-b347-95929c11fa0a", + "owned-node-edge-point": [ + { + "uuid": "36cee671-f002-49cd-8b21-f13d1e1888b8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212325" + }, + { + "value-name": "topology-node-local-id", + "value": "212325" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "701c93f1-ba62-448e-83d7-9e2c556b4f23", + "owned-node-edge-point": [ + { + "uuid": "27c57a4d-a093-4626-ac29-3b149cf2698b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212326" + }, + { + "value-name": "topology-node-local-id", + "value": "212326" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5557b072-225a-475f-9b23-81525bce8246", + "owned-node-edge-point": [ + { + "uuid": "e8d78ffb-71c6-4253-a37d-f604389279ff", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212327" + }, + { + "value-name": "topology-node-local-id", + "value": "212327" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "422d46ad-c578-46ba-9014-b0ef28edd304", + "owned-node-edge-point": [ + { + "uuid": "2563c7a2-ce84-4286-b1ac-1cf4c38830e9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212328" + }, + { + "value-name": "topology-node-local-id", + "value": "212328" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bda0b91d-6549-4ee2-ba37-d48af0df1309", + "owned-node-edge-point": [ + { + "uuid": "ab9d4dd3-4ff6-4a3f-a75b-91d2e4e32b98", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212329" + }, + { + "value-name": "topology-node-local-id", + "value": "212329" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "owned-node-edge-point": [ + { + "uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21232" + } + ] + }, + { + "uuid": "52d23fd5-584f-49c4-80fc-69432d2cb246", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21232" + }, + { + "value-name": "topology-node-local-id", + "value": "21232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "df74b507-11f6-4fcd-a579-e8e77b9f4f19", + "owned-node-edge-point": [ + { + "uuid": "adf3be45-609a-44a7-891f-530102440796", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212331" + }, + { + "value-name": "topology-node-local-id", + "value": "212331" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b14fe859-31df-4eac-9122-8d3a19d4b9e6", + "owned-node-edge-point": [ + { + "uuid": "92fce0f6-e88b-4d89-a9d5-899de5e63915", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212332" + }, + { + "value-name": "topology-node-local-id", + "value": "212332" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9423a34d-8506-48dc-b1e4-9cc4b58de0ca", + "owned-node-edge-point": [ + { + "uuid": "5c311c3b-ff9c-46d9-9ef1-5017d42c1120", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212333" + }, + { + "value-name": "topology-node-local-id", + "value": "212333" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "36a4fba5-82de-4986-aed3-c381ba98ddd5", + "owned-node-edge-point": [ + { + "uuid": "fa9ebe8f-0936-45b5-92e4-4121a8abfc01", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212334" + }, + { + "value-name": "topology-node-local-id", + "value": "212334" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7daa1d26-5141-468b-8c25-4dfa30e930b5", + "owned-node-edge-point": [ + { + "uuid": "9e43f7fb-21e1-4fe3-980f-ef4d9ffa0fa1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212335" + }, + { + "value-name": "topology-node-local-id", + "value": "212335" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ab930fae-c8c1-483d-b246-866cfad5a25a", + "owned-node-edge-point": [ + { + "uuid": "07356f5c-c184-4fc0-82ce-e7e4b6f6bd6b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212336" + }, + { + "value-name": "topology-node-local-id", + "value": "212336" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b3f8fa5c-bf92-4c6e-aa4a-f96cd9a7a3cf", + "owned-node-edge-point": [ + { + "uuid": "10c65d06-52aa-4770-92ad-38277b51238f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212337" + }, + { + "value-name": "topology-node-local-id", + "value": "212337" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "64fbe7a6-3188-4956-a72e-1c1810207ffd", + "owned-node-edge-point": [ + { + "uuid": "637387aa-abbe-4818-9e1b-ab1b875776de", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212338" + }, + { + "value-name": "topology-node-local-id", + "value": "212338" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a458c44c-cfa9-4652-bb9e-86ea6b7f706d", + "owned-node-edge-point": [ + { + "uuid": "443f1ab2-aeea-44f3-959d-492b6fe83048", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212339" + }, + { + "value-name": "topology-node-local-id", + "value": "212339" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "owned-node-edge-point": [ + { + "uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21233" + } + ] + }, + { + "uuid": "55b19f95-2595-47cd-95cf-c5f22a9b743f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21233" + }, + { + "value-name": "topology-node-local-id", + "value": "21233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9f5b8b77-1e36-4888-a12d-91a68edd09bb", + "owned-node-edge-point": [ + { + "uuid": "25d92999-ceec-4bd8-b800-33460d35a3b7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212341" + }, + { + "value-name": "topology-node-local-id", + "value": "212341" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5830844e-1c29-47fa-9c97-1a95bc6d717d", + "owned-node-edge-point": [ + { + "uuid": "66f3d802-424d-4191-8386-57b0bd0fb079", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212342" + }, + { + "value-name": "topology-node-local-id", + "value": "212342" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "59d19f7d-dc81-4de9-89d6-40b2669c3c21", + "owned-node-edge-point": [ + { + "uuid": "8b9845d7-4935-43a1-9697-101ef9946518", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212343" + }, + { + "value-name": "topology-node-local-id", + "value": "212343" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "82ba62e4-fc4f-4dcc-a514-39ef8577f845", + "owned-node-edge-point": [ + { + "uuid": "1e8198bc-6536-4d14-868e-960247acc7fe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212344" + }, + { + "value-name": "topology-node-local-id", + "value": "212344" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e13270ac-4b56-4fec-b4c1-2170529d2908", + "owned-node-edge-point": [ + { + "uuid": "8885c6e6-85dc-4984-be24-5777eb2a3a57", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212345" + }, + { + "value-name": "topology-node-local-id", + "value": "212345" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fe1e219e-acf1-4045-8135-2499a5a0c0ee", + "owned-node-edge-point": [ + { + "uuid": "45bc820c-44b3-411f-a45b-213e2b4da6d9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212346" + }, + { + "value-name": "topology-node-local-id", + "value": "212346" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "aafdaa72-c7dd-4b45-93d9-9f32ad0bf68a", + "owned-node-edge-point": [ + { + "uuid": "cf3c756d-c2ee-4c68-bcc1-077c9789ae44", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212347" + }, + { + "value-name": "topology-node-local-id", + "value": "212347" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8e49cad0-4864-4b17-b953-bff54017981e", + "owned-node-edge-point": [ + { + "uuid": "a46a2f6a-b5f9-4e73-91da-04e9ef201a96", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212348" + }, + { + "value-name": "topology-node-local-id", + "value": "212348" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f5c26543-7102-461c-8d92-1ec7897e79a2", + "owned-node-edge-point": [ + { + "uuid": "022c1f79-f4be-4dc8-8741-ef55081488cf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-212349" + }, + { + "value-name": "topology-node-local-id", + "value": "212349" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "owned-node-edge-point": [ + { + "uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-21234" + } + ] + }, + { + "uuid": "2342c221-7bf8-4a21-9e3f-f6496f690bae", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-21234" + }, + { + "value-name": "topology-node-local-id", + "value": "21234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cc1a9a08-0a4e-441f-85e0-028a0f163a24", + "owned-node-edge-point": [ + { + "uuid": "8a284fa0-5e0b-4f95-9244-bea7a6ef2eb1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "8a284fa0-5e0b-4f95-9244-bea7a6ef2eb1" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2123" + } + ] + }, + { + "uuid": "e8514699-a0f5-4921-94db-6dc188f9b16b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2123" + }, + { + "value-name": "topology-node-local-id", + "value": "2123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b80a3581-3457-4149-8407-49550e276816", + "owned-node-edge-point": [ + { + "uuid": "af7c7fef-42e1-4573-84b5-4c7fae382bc7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "af7c7fef-42e1-4573-84b5-4c7fae382bc7" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-CU-UP-212" + } + ] + }, + { + "uuid": "4174f546-5cde-45fa-8e65-60faa0b07091", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-CU-UP-212" + }, + { + "value-name": "topology-node-local-id", + "value": "212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-cu-up-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b8375461-06d0-43f6-9f2d-f15dfe4d2138", + "owned-node-edge-point": [ + { + "uuid": "27ff5412-d6f6-4bdb-99d7-618ff210f762", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "27ff5412-d6f6-4bdb-99d7-618ff210f762" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for NEAR-RT-RIC-21" + } + ] + }, + { + "uuid": "96b2519f-1414-4a2b-ba0c-dda4e48cba0b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "NEAR-RT-RIC-21" + }, + { + "value-name": "topology-node-local-id", + "value": "21" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:near-rt-ric-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "def6235e-a3fe-4046-9c1e-4aa0888da431", + "owned-node-edge-point": [ + { + "uuid": "2740e725-a5d6-44b6-b574-eb5e7fdd4f89", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221111" + }, + { + "value-name": "topology-node-local-id", + "value": "221111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0f2f1b93-9357-42cd-8e84-9c9c563eba59", + "owned-node-edge-point": [ + { + "uuid": "ea2f128e-8f12-442c-85b9-aaa05f1bd183", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221112" + }, + { + "value-name": "topology-node-local-id", + "value": "221112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "64fdc895-ce69-478a-8e5c-de913ed4def7", + "owned-node-edge-point": [ + { + "uuid": "c655ee19-e7ff-46d0-ad52-9ab07423f5f1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221113" + }, + { + "value-name": "topology-node-local-id", + "value": "221113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "000f6c26-56e2-4617-8761-d3f34e57b687", + "owned-node-edge-point": [ + { + "uuid": "2304edce-8045-4977-9e54-803131072bb2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221114" + }, + { + "value-name": "topology-node-local-id", + "value": "221114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8a8e852c-26aa-4e45-859e-71f9508dc077", + "owned-node-edge-point": [ + { + "uuid": "378f3abe-2620-4b6b-9712-ed143a91016a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221115" + }, + { + "value-name": "topology-node-local-id", + "value": "221115" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4aaefbeb-6f0a-43bd-a558-e7690a5d5940", + "owned-node-edge-point": [ + { + "uuid": "8098ce17-f9e3-45e7-91fb-3ed4af5f4bb4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221116" + }, + { + "value-name": "topology-node-local-id", + "value": "221116" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a46b47d4-588c-4c0b-a39b-1ca0981b9e1a", + "owned-node-edge-point": [ + { + "uuid": "aef5d27b-47a4-4c42-8c2f-8f7a016c4a62", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221117" + }, + { + "value-name": "topology-node-local-id", + "value": "221117" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ac281c00-3d83-42c7-85a8-9344665354fc", + "owned-node-edge-point": [ + { + "uuid": "0ffcc725-a028-461f-8dc1-4dd4557032a6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221118" + }, + { + "value-name": "topology-node-local-id", + "value": "221118" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "eec9c066-a9b0-4e56-b108-4b5a9426d84e", + "owned-node-edge-point": [ + { + "uuid": "5685f1dc-92c6-4a0d-8072-636380e39c62", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221119" + }, + { + "value-name": "topology-node-local-id", + "value": "221119" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "owned-node-edge-point": [ + { + "uuid": "729b053a-959b-49f2-bb06-89ba0534a258", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22111" + } + ] + }, + { + "uuid": "dc4098e8-e74d-4432-9971-4c0f42e64e50", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22111" + }, + { + "value-name": "topology-node-local-id", + "value": "22111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fc09a823-591b-4a7d-a640-bd3f89a9922b", + "owned-node-edge-point": [ + { + "uuid": "3b13ca70-1670-4dbd-9715-a5eacc6eff31", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221121" + }, + { + "value-name": "topology-node-local-id", + "value": "221121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e4dcca9f-43ab-4dbb-804e-ce2a802e87fa", + "owned-node-edge-point": [ + { + "uuid": "21a0c444-fe49-448e-968f-abe1b31c6232", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221122" + }, + { + "value-name": "topology-node-local-id", + "value": "221122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "025e69ca-9319-4230-b7d3-dc9db5b5cd2f", + "owned-node-edge-point": [ + { + "uuid": "22fb3dc5-607f-4700-a407-b0a5c434ca21", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221123" + }, + { + "value-name": "topology-node-local-id", + "value": "221123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "33862c87-138f-4b40-8931-22c30d860060", + "owned-node-edge-point": [ + { + "uuid": "9e0fd580-7e4f-41f3-b9b1-d216bb6fa3a9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221124" + }, + { + "value-name": "topology-node-local-id", + "value": "221124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "58f77184-60f8-4c47-ae64-cd713bc71318", + "owned-node-edge-point": [ + { + "uuid": "fb9dfa4b-be0a-4b60-9761-449173d7b306", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221125" + }, + { + "value-name": "topology-node-local-id", + "value": "221125" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "17860a28-e45d-4064-8b88-9875cf2a79ed", + "owned-node-edge-point": [ + { + "uuid": "5fc1392a-23cc-4768-8fa3-ae4dfd5532e6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221126" + }, + { + "value-name": "topology-node-local-id", + "value": "221126" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2c3d4774-ea9b-4dc7-9ecb-594f58f49463", + "owned-node-edge-point": [ + { + "uuid": "93b08b73-33ac-4342-8ee5-86009c9c3481", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221127" + }, + { + "value-name": "topology-node-local-id", + "value": "221127" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "53ba26e8-d460-41b4-a35e-9b56b9348d34", + "owned-node-edge-point": [ + { + "uuid": "64ef7a9d-ab25-494b-828e-2b09a967c187", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221128" + }, + { + "value-name": "topology-node-local-id", + "value": "221128" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b2c3ff75-1a05-4a1a-a6b4-8b2da3298efa", + "owned-node-edge-point": [ + { + "uuid": "cd5dfd9e-4479-4fb7-82ca-2870e1373791", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221129" + }, + { + "value-name": "topology-node-local-id", + "value": "221129" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "owned-node-edge-point": [ + { + "uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22112" + } + ] + }, + { + "uuid": "be28bf0a-fff2-441a-8c8c-d3b7d3d31a42", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22112" + }, + { + "value-name": "topology-node-local-id", + "value": "22112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2419dd9e-f721-42af-a9e2-aa177173a048", + "owned-node-edge-point": [ + { + "uuid": "75bcf443-fdc1-42b9-b93b-a4e81595905c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221131" + }, + { + "value-name": "topology-node-local-id", + "value": "221131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ae7597b7-eb9e-474a-a360-11a01e38e9fb", + "owned-node-edge-point": [ + { + "uuid": "c9b62ef1-fe6c-4455-bef5-7873bfd5bc43", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221132" + }, + { + "value-name": "topology-node-local-id", + "value": "221132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "70808a5c-eb96-41fb-94ce-5bdffc3df769", + "owned-node-edge-point": [ + { + "uuid": "97592e4d-1592-45af-893c-bcf0dc2b6bbb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221133" + }, + { + "value-name": "topology-node-local-id", + "value": "221133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e0f52ff8-5971-43e8-8542-810411735f1a", + "owned-node-edge-point": [ + { + "uuid": "3175bb11-a3c2-4696-aade-dae4e1c5c9ea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221134" + }, + { + "value-name": "topology-node-local-id", + "value": "221134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3519aecc-361b-40b6-a664-f1118be082f1", + "owned-node-edge-point": [ + { + "uuid": "c1323e0f-f69f-4ca0-94ab-f2b4192478ac", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221135" + }, + { + "value-name": "topology-node-local-id", + "value": "221135" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "17945010-d104-4075-b01f-2ff7b2081539", + "owned-node-edge-point": [ + { + "uuid": "8448be4d-e459-4ffe-89a1-f3ae0fcb9c22", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221136" + }, + { + "value-name": "topology-node-local-id", + "value": "221136" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cac632e3-05e3-40f8-9d39-453e122f062e", + "owned-node-edge-point": [ + { + "uuid": "807ee14a-2eaf-4ad2-b8bd-8c9b4b688781", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221137" + }, + { + "value-name": "topology-node-local-id", + "value": "221137" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a2d82c39-36f4-42ef-b075-14562146e346", + "owned-node-edge-point": [ + { + "uuid": "c0ed3ff8-5d94-45f9-a571-536d79acc127", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221138" + }, + { + "value-name": "topology-node-local-id", + "value": "221138" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8a2e3b52-6710-412b-bec7-133b11fc722a", + "owned-node-edge-point": [ + { + "uuid": "5cf593bd-a7f8-4ed9-8fcb-f2a539a11aae", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221139" + }, + { + "value-name": "topology-node-local-id", + "value": "221139" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "owned-node-edge-point": [ + { + "uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22113" + } + ] + }, + { + "uuid": "6aeca878-d47f-4137-a2ff-c0ecadee38b8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22113" + }, + { + "value-name": "topology-node-local-id", + "value": "22113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b9d26d58-473d-4688-bfd2-2795dfff9da2", + "owned-node-edge-point": [ + { + "uuid": "88ab067c-91ce-499e-8d98-8eb368041ba6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221141" + }, + { + "value-name": "topology-node-local-id", + "value": "221141" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ec40941f-4351-4c65-8cd1-68d3aa0fbcc8", + "owned-node-edge-point": [ + { + "uuid": "53be0c5c-bf49-4c9d-8c9b-bbdbe2752591", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221142" + }, + { + "value-name": "topology-node-local-id", + "value": "221142" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7ed486c8-1ae5-43ab-8620-226aafcf0f7d", + "owned-node-edge-point": [ + { + "uuid": "896b289f-eb29-467b-bfad-28e34da9f44a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221143" + }, + { + "value-name": "topology-node-local-id", + "value": "221143" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "53ae8655-fdcf-4f33-9663-9666c097a0f5", + "owned-node-edge-point": [ + { + "uuid": "b6c50773-8dbe-4ffd-b821-691672191131", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221144" + }, + { + "value-name": "topology-node-local-id", + "value": "221144" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "eb286f4f-0ce9-496c-be9e-8ac7b685d938", + "owned-node-edge-point": [ + { + "uuid": "9fe0e050-641d-41b3-8194-0240030736c1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221145" + }, + { + "value-name": "topology-node-local-id", + "value": "221145" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2954d779-f735-4d55-90ee-29d09ac2d300", + "owned-node-edge-point": [ + { + "uuid": "b778c120-81a8-4f9e-99dc-cf9a9ed55fc7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221146" + }, + { + "value-name": "topology-node-local-id", + "value": "221146" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6b41dc78-a002-45a3-93f2-4e70d1f3aaa6", + "owned-node-edge-point": [ + { + "uuid": "8e19e30c-1c8b-4506-b20f-d62fbf773fe4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221147" + }, + { + "value-name": "topology-node-local-id", + "value": "221147" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c8ed5fce-28eb-4e46-b309-8c01f6bac14a", + "owned-node-edge-point": [ + { + "uuid": "5a1caf09-ed9a-4fa3-a38b-a62a341bda5b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221148" + }, + { + "value-name": "topology-node-local-id", + "value": "221148" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a5edc933-b2ac-4b4c-91dc-76c6eaa443ff", + "owned-node-edge-point": [ + { + "uuid": "35277c66-119d-45f2-a41e-f653183649e7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221149" + }, + { + "value-name": "topology-node-local-id", + "value": "221149" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "owned-node-edge-point": [ + { + "uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22114" + } + ] + }, + { + "uuid": "2f20b579-119e-4935-bd0f-2449ddcdcc9c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22114" + }, + { + "value-name": "topology-node-local-id", + "value": "22114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cd8ddb57-8a6d-45ee-ac5b-ff8f52418c7a", + "owned-node-edge-point": [ + { + "uuid": "7418220c-8f8d-408e-ab20-e53397d96736", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "7418220c-8f8d-408e-ab20-e53397d96736" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2211" + } + ] + }, + { + "uuid": "5210d5f3-f673-4e8e-bc68-13ea48ec2904", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2211" + }, + { + "value-name": "topology-node-local-id", + "value": "2211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1427c950-caba-4f97-9eb0-f77c75e0807b", + "owned-node-edge-point": [ + { + "uuid": "ffc15e8e-e7c3-4253-b6d1-ee3ea1cf71a3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221211" + }, + { + "value-name": "topology-node-local-id", + "value": "221211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b2522799-e2f6-4f00-840e-86e672c5bd7b", + "owned-node-edge-point": [ + { + "uuid": "2e5a1c1d-bff3-4ba4-a470-5de92ec7c5a4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221212" + }, + { + "value-name": "topology-node-local-id", + "value": "221212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f7bb7d2e-6685-4047-9957-bca2c38eafb2", + "owned-node-edge-point": [ + { + "uuid": "43f871fd-cac4-4408-aa1e-9d094b58c737", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221213" + }, + { + "value-name": "topology-node-local-id", + "value": "221213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "998b2e09-45a2-4278-8f82-aef7d5605767", + "owned-node-edge-point": [ + { + "uuid": "925e8b1e-fe8c-4e40-8325-cdf28ef50616", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221214" + }, + { + "value-name": "topology-node-local-id", + "value": "221214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "111921b9-932c-4ca0-9ba0-8202738c6642", + "owned-node-edge-point": [ + { + "uuid": "7bc228c6-b81b-4314-9aa7-9953d66f3802", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221215" + }, + { + "value-name": "topology-node-local-id", + "value": "221215" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "30280a47-8264-4273-b2a0-7a38dd1f2ac3", + "owned-node-edge-point": [ + { + "uuid": "e0b7fe39-e848-4562-b466-579720b4d43c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221216" + }, + { + "value-name": "topology-node-local-id", + "value": "221216" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f4fd21c6-a879-491c-898e-5ab6d96a8b47", + "owned-node-edge-point": [ + { + "uuid": "e6fc5015-e3c3-42dd-a8ac-dd4101a20524", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221217" + }, + { + "value-name": "topology-node-local-id", + "value": "221217" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d7cac0a1-8b1a-421a-8c57-ac8ff2899048", + "owned-node-edge-point": [ + { + "uuid": "3f835194-6597-46ca-9a19-4ed90c5b5477", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221218" + }, + { + "value-name": "topology-node-local-id", + "value": "221218" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d07d3456-3bd5-453f-9c5c-001d15923461", + "owned-node-edge-point": [ + { + "uuid": "d96e9cca-8763-46bc-98a6-e41547b1f770", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221219" + }, + { + "value-name": "topology-node-local-id", + "value": "221219" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "owned-node-edge-point": [ + { + "uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22121" + } + ] + }, + { + "uuid": "5901325c-f849-46c6-8188-b8a6f2ddf752", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22121" + }, + { + "value-name": "topology-node-local-id", + "value": "22121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0a2ab867-6ea6-4f1a-9d7d-5e11d911913a", + "owned-node-edge-point": [ + { + "uuid": "d569397d-088f-448f-bfc0-d621c4171aa0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221221" + }, + { + "value-name": "topology-node-local-id", + "value": "221221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5421f6ca-6d6a-4463-9387-a2bf58a83273", + "owned-node-edge-point": [ + { + "uuid": "375de754-2c96-4544-b27b-18e0d6086579", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221222" + }, + { + "value-name": "topology-node-local-id", + "value": "221222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "37492af7-0a6d-4b6a-81a7-99df93c7496c", + "owned-node-edge-point": [ + { + "uuid": "2c006d96-edb4-4511-8f33-a02688b9adfe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221223" + }, + { + "value-name": "topology-node-local-id", + "value": "221223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f18dcdf8-a8d5-4d53-a849-e3d271a65a0b", + "owned-node-edge-point": [ + { + "uuid": "faec0097-4f64-4d37-9181-aa4a4d4caf20", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221224" + }, + { + "value-name": "topology-node-local-id", + "value": "221224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "677f76a3-f773-4ac0-9f1e-ee2ea1d64832", + "owned-node-edge-point": [ + { + "uuid": "e3abd6fd-6ef1-409f-8f75-0633196ae10f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221225" + }, + { + "value-name": "topology-node-local-id", + "value": "221225" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7e23eae9-58bc-4e3d-b35c-1d29fc229151", + "owned-node-edge-point": [ + { + "uuid": "0e85e670-c1e3-410e-909a-122f99ae4b18", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221226" + }, + { + "value-name": "topology-node-local-id", + "value": "221226" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "aec645b3-ef3f-4b21-be12-0f5c7ced8a53", + "owned-node-edge-point": [ + { + "uuid": "a77eab40-9d48-4956-a69a-255420bef60d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221227" + }, + { + "value-name": "topology-node-local-id", + "value": "221227" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "abef7703-bb78-4dcf-936c-906bbad38ee5", + "owned-node-edge-point": [ + { + "uuid": "9c62b155-06b7-4041-b263-3ad68cbba18f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221228" + }, + { + "value-name": "topology-node-local-id", + "value": "221228" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0475dcae-f60a-4c4a-854d-ae5fdf1aff79", + "owned-node-edge-point": [ + { + "uuid": "5bc66ad5-503c-496c-bc56-041ecbc7d895", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221229" + }, + { + "value-name": "topology-node-local-id", + "value": "221229" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "owned-node-edge-point": [ + { + "uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22122" + } + ] + }, + { + "uuid": "4663b42d-0dc0-49fb-a578-13b7690000cf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22122" + }, + { + "value-name": "topology-node-local-id", + "value": "22122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7dfdbca0-71af-4cb1-b304-fcae303f2f8a", + "owned-node-edge-point": [ + { + "uuid": "6c1920a5-4f57-40b9-bf84-55d2afe131fe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221231" + }, + { + "value-name": "topology-node-local-id", + "value": "221231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a35b6e43-9631-44e3-b0de-5ae64b75d082", + "owned-node-edge-point": [ + { + "uuid": "9227934b-3bab-4fa9-b277-c576f5952e5a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221232" + }, + { + "value-name": "topology-node-local-id", + "value": "221232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f4f24754-3110-41af-8504-2dbb16021ed9", + "owned-node-edge-point": [ + { + "uuid": "ea3d3686-91d5-4119-ad26-58c40bf31d3e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221233" + }, + { + "value-name": "topology-node-local-id", + "value": "221233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e11a2985-aeb7-4e7a-90cf-b028e0178f5b", + "owned-node-edge-point": [ + { + "uuid": "689d561c-d5db-4288-82f4-155f547e6643", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221234" + }, + { + "value-name": "topology-node-local-id", + "value": "221234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f918750f-7dd4-42ac-b5c3-50768bd3aa72", + "owned-node-edge-point": [ + { + "uuid": "1ae280d1-7c07-4f39-8d06-8645fa30431a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221235" + }, + { + "value-name": "topology-node-local-id", + "value": "221235" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "523062b6-d9b4-4ec6-b1ee-610b74addc12", + "owned-node-edge-point": [ + { + "uuid": "fcebfc01-429e-432d-b9ba-38cbbcf5d37f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221236" + }, + { + "value-name": "topology-node-local-id", + "value": "221236" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a8c65b23-37ef-4963-8bc1-5627d1cc6a9a", + "owned-node-edge-point": [ + { + "uuid": "dd3c0482-103a-4c09-9d08-4b9e8cf9f5db", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221237" + }, + { + "value-name": "topology-node-local-id", + "value": "221237" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5715c439-ceaf-4785-a691-3ee5fe5d201a", + "owned-node-edge-point": [ + { + "uuid": "3b2a958c-5bb1-436b-a7a9-c0111c54ffca", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221238" + }, + { + "value-name": "topology-node-local-id", + "value": "221238" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a81bbcfc-77e4-479e-a7a5-ff92dfec3899", + "owned-node-edge-point": [ + { + "uuid": "c3512be0-700a-4726-ac2a-30613bab3b9f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221239" + }, + { + "value-name": "topology-node-local-id", + "value": "221239" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "owned-node-edge-point": [ + { + "uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22123" + } + ] + }, + { + "uuid": "3638529d-09b9-4fe9-acb6-d54912918834", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22123" + }, + { + "value-name": "topology-node-local-id", + "value": "22123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "796573f9-b5b0-4239-a485-4104b946fbe3", + "owned-node-edge-point": [ + { + "uuid": "82994eeb-521e-4f54-a7e3-966fd4125bc0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221241" + }, + { + "value-name": "topology-node-local-id", + "value": "221241" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c182db4a-77c9-4261-9991-33bf08977d46", + "owned-node-edge-point": [ + { + "uuid": "688910a6-0329-4586-8997-5bbcb8bd619e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221242" + }, + { + "value-name": "topology-node-local-id", + "value": "221242" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3ab4c39f-ae25-4c51-a1c5-069aefff4b93", + "owned-node-edge-point": [ + { + "uuid": "21ab4e99-29f2-47da-ac54-1c086a30c1e6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221243" + }, + { + "value-name": "topology-node-local-id", + "value": "221243" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e8ef934d-f301-4b47-9dd9-1e01e1c50576", + "owned-node-edge-point": [ + { + "uuid": "c8b84d31-3bf9-4db1-b00f-9e8db5af6a6e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221244" + }, + { + "value-name": "topology-node-local-id", + "value": "221244" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8677748a-fde0-4dfd-b9bf-18bd648f9789", + "owned-node-edge-point": [ + { + "uuid": "59164cb3-ea5a-4aa9-a33a-c0df4ee63b8a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221245" + }, + { + "value-name": "topology-node-local-id", + "value": "221245" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c3440851-8504-449a-b35a-c1f761fbcf90", + "owned-node-edge-point": [ + { + "uuid": "47f62709-3544-4639-8233-6c0b78690e06", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221246" + }, + { + "value-name": "topology-node-local-id", + "value": "221246" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ff337711-5687-4b10-8752-a258d515e37f", + "owned-node-edge-point": [ + { + "uuid": "4d40fdcb-d8b5-40cf-80a5-72396f580cb1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221247" + }, + { + "value-name": "topology-node-local-id", + "value": "221247" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "417feedc-0fc5-46d0-869e-760db90a7b61", + "owned-node-edge-point": [ + { + "uuid": "563ec195-7373-40bb-b3ea-10a8416fc817", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221248" + }, + { + "value-name": "topology-node-local-id", + "value": "221248" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b69c9087-6abe-4246-b4a7-d75566cf4c44", + "owned-node-edge-point": [ + { + "uuid": "d0662fa9-9f97-42ff-b52d-241f0bdc9842", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221249" + }, + { + "value-name": "topology-node-local-id", + "value": "221249" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "owned-node-edge-point": [ + { + "uuid": "042f4121-c782-4071-ac9f-f787f360a19f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22124" + } + ] + }, + { + "uuid": "ee4c887d-f9dd-455f-a7b9-53343df9a2d4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22124" + }, + { + "value-name": "topology-node-local-id", + "value": "22124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4b199fdd-1cf7-4703-b249-0f9bbe65655c", + "owned-node-edge-point": [ + { + "uuid": "7977509a-0b7d-40da-bd8f-9e596d33c408", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "7977509a-0b7d-40da-bd8f-9e596d33c408" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2212" + } + ] + }, + { + "uuid": "adbd411f-a082-4cef-aa8a-7914e6ba8021", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2212" + }, + { + "value-name": "topology-node-local-id", + "value": "2212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1518a73f-d33a-45c3-8016-de196fa1ef32", + "owned-node-edge-point": [ + { + "uuid": "fbe8f4a4-f0f7-4168-9a44-f127cc1935b1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221311" + }, + { + "value-name": "topology-node-local-id", + "value": "221311" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2af9ddae-e409-4162-bf72-3089ea0e8a88", + "owned-node-edge-point": [ + { + "uuid": "b41d10fc-195e-49a4-a699-1de85f2a01a2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221312" + }, + { + "value-name": "topology-node-local-id", + "value": "221312" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "51cc932a-5a0b-4935-8b84-a3b1e68efc86", + "owned-node-edge-point": [ + { + "uuid": "35e82f3f-c6d6-4fa4-8459-d6122cdc3392", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221313" + }, + { + "value-name": "topology-node-local-id", + "value": "221313" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3acf085a-b3b7-4c4e-8478-a80f63899b87", + "owned-node-edge-point": [ + { + "uuid": "a3b695e0-341a-40df-96dc-70c0205f808d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221314" + }, + { + "value-name": "topology-node-local-id", + "value": "221314" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "42956404-90ae-4e9d-8bdc-f545e3300d6c", + "owned-node-edge-point": [ + { + "uuid": "563b8cea-8d41-4f44-bd72-79e9ae277a8b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221315" + }, + { + "value-name": "topology-node-local-id", + "value": "221315" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "745cd1a8-278e-43be-ad1c-54de001dec0b", + "owned-node-edge-point": [ + { + "uuid": "e4199523-9ffd-44c7-9c54-11336e978371", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221316" + }, + { + "value-name": "topology-node-local-id", + "value": "221316" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4891e8b2-fc90-4733-8455-9ddc8d39ff82", + "owned-node-edge-point": [ + { + "uuid": "69c91796-f62b-446c-9b79-d74987af6578", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221317" + }, + { + "value-name": "topology-node-local-id", + "value": "221317" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2b768729-3c89-49e7-b0cf-9f36f648a07d", + "owned-node-edge-point": [ + { + "uuid": "39bfa5cd-6a7a-4938-b3ef-bf6b0d32788e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221318" + }, + { + "value-name": "topology-node-local-id", + "value": "221318" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "724acc4e-a025-4f13-935b-b62a29759da4", + "owned-node-edge-point": [ + { + "uuid": "52b8b419-f18b-4e6c-84a4-54827d0d52c5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221319" + }, + { + "value-name": "topology-node-local-id", + "value": "221319" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "owned-node-edge-point": [ + { + "uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22131" + } + ] + }, + { + "uuid": "29c920b2-fbae-453f-ba9b-6700bbdd296f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22131" + }, + { + "value-name": "topology-node-local-id", + "value": "22131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d89d85d7-c950-4afd-9e9d-a7780089d248", + "owned-node-edge-point": [ + { + "uuid": "d71f2a52-132e-4b7c-827b-3f2c0afefd93", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221321" + }, + { + "value-name": "topology-node-local-id", + "value": "221321" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b6b5af9e-468a-4cab-80fc-de5505e58908", + "owned-node-edge-point": [ + { + "uuid": "cc284e45-d8d9-47e4-b515-2f7a4ef67169", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221322" + }, + { + "value-name": "topology-node-local-id", + "value": "221322" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0ff0adf5-a346-4943-8b11-0b1b2a1795af", + "owned-node-edge-point": [ + { + "uuid": "612f0a2f-df70-459e-babb-e04999c97a2f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221323" + }, + { + "value-name": "topology-node-local-id", + "value": "221323" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9495dd5a-9ff6-4d58-9539-6ae3652f19b2", + "owned-node-edge-point": [ + { + "uuid": "d9ef826c-c700-4721-90db-250d270bdd00", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221324" + }, + { + "value-name": "topology-node-local-id", + "value": "221324" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5cf8c345-6e06-4d34-931f-d9cb6923ccc0", + "owned-node-edge-point": [ + { + "uuid": "7aaba73f-1f61-4a16-90d8-f9b452030efe", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221325" + }, + { + "value-name": "topology-node-local-id", + "value": "221325" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f878bb69-0d4a-44ae-8625-8a83aaf8f6fc", + "owned-node-edge-point": [ + { + "uuid": "f1898228-5c3d-49c7-9954-6744d54e4221", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221326" + }, + { + "value-name": "topology-node-local-id", + "value": "221326" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "74e1ae9f-1892-4206-8910-075d6c22d55b", + "owned-node-edge-point": [ + { + "uuid": "f47fbd1a-7250-46d9-b7fa-0a8db240b446", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221327" + }, + { + "value-name": "topology-node-local-id", + "value": "221327" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "47e54459-54c8-42bc-885f-6730af1c59eb", + "owned-node-edge-point": [ + { + "uuid": "d1746ea0-b9ab-48cb-9246-d85214457713", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221328" + }, + { + "value-name": "topology-node-local-id", + "value": "221328" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d61f0ed9-d036-4f96-881e-110c41b1d6ff", + "owned-node-edge-point": [ + { + "uuid": "cfd628aa-87a7-475a-a9d2-36ad680820b5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221329" + }, + { + "value-name": "topology-node-local-id", + "value": "221329" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "owned-node-edge-point": [ + { + "uuid": "b698d519-1a1a-4251-8174-b0075dbc0338", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22132" + } + ] + }, + { + "uuid": "d86861f0-aeed-4989-81f0-1720e265b6ce", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22132" + }, + { + "value-name": "topology-node-local-id", + "value": "22132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "029d526d-bb97-4f36-a84e-5fb49e32f2d2", + "owned-node-edge-point": [ + { + "uuid": "57f25d02-4af0-4205-894c-e2e3c0de6beb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221331" + }, + { + "value-name": "topology-node-local-id", + "value": "221331" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3c617ed0-873d-4047-aac4-5d589066aefb", + "owned-node-edge-point": [ + { + "uuid": "94a6ef7d-3fd9-4ac5-b33d-222b2025ae70", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221332" + }, + { + "value-name": "topology-node-local-id", + "value": "221332" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "931a6ed0-aee8-4d4b-98cf-859fb0ffd489", + "owned-node-edge-point": [ + { + "uuid": "55d3a771-9a4e-40cb-820e-5a59f36a0c66", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221333" + }, + { + "value-name": "topology-node-local-id", + "value": "221333" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "43a24814-4042-495f-92b0-710ca6459ae8", + "owned-node-edge-point": [ + { + "uuid": "48b4177b-ad3c-415a-9b55-60f847e8deef", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221334" + }, + { + "value-name": "topology-node-local-id", + "value": "221334" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cf95f33b-a58f-4f62-8c55-9680ac2b159c", + "owned-node-edge-point": [ + { + "uuid": "1cf65450-7d0f-468d-9c5d-effe2836f3fa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221335" + }, + { + "value-name": "topology-node-local-id", + "value": "221335" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "16b95062-cce0-4dae-9834-8f4242b93b59", + "owned-node-edge-point": [ + { + "uuid": "35fb117e-7d34-4d0b-bf98-0b715ba1e5f2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221336" + }, + { + "value-name": "topology-node-local-id", + "value": "221336" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4ee66b16-a061-434c-a080-ba68eb75b05f", + "owned-node-edge-point": [ + { + "uuid": "d3eb541e-51d0-4ad2-91f1-324e4b5ed5d3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221337" + }, + { + "value-name": "topology-node-local-id", + "value": "221337" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e122c8f3-bec1-46ff-aea3-79535e16361c", + "owned-node-edge-point": [ + { + "uuid": "61d27bcb-f4ef-4eb5-b6e4-812a5937aca7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221338" + }, + { + "value-name": "topology-node-local-id", + "value": "221338" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f825a338-5bee-4f73-89f2-c847bed65150", + "owned-node-edge-point": [ + { + "uuid": "9ce5fed5-2ede-43af-8af2-feb6915e692f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221339" + }, + { + "value-name": "topology-node-local-id", + "value": "221339" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "owned-node-edge-point": [ + { + "uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22133" + } + ] + }, + { + "uuid": "bbeef3a2-da17-4fe9-b2ab-cb6d820d7226", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22133" + }, + { + "value-name": "topology-node-local-id", + "value": "22133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c8ddee6e-2e49-473f-8f54-904af9247a62", + "owned-node-edge-point": [ + { + "uuid": "701d46b1-bed4-4ed1-be82-c47552c604ce", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221341" + }, + { + "value-name": "topology-node-local-id", + "value": "221341" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dcdf79b7-8b56-4b8c-896c-1d468235a068", + "owned-node-edge-point": [ + { + "uuid": "fbddc09f-dcca-4e44-af21-167ae92a5b32", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221342" + }, + { + "value-name": "topology-node-local-id", + "value": "221342" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9693fa34-4f66-4e77-9a25-5ec686d59543", + "owned-node-edge-point": [ + { + "uuid": "e760f790-05bf-448e-a8b6-a845db9668ea", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221343" + }, + { + "value-name": "topology-node-local-id", + "value": "221343" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f9d452a4-94e5-4bfb-98c7-7328ade44a10", + "owned-node-edge-point": [ + { + "uuid": "9c12e5e8-965f-4bca-91d8-61b0a0ac75f1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221344" + }, + { + "value-name": "topology-node-local-id", + "value": "221344" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1ac5ef69-0a7c-4745-81c0-0a95ff34acec", + "owned-node-edge-point": [ + { + "uuid": "041ed5af-c49c-44b2-af6b-8cdf666bf166", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221345" + }, + { + "value-name": "topology-node-local-id", + "value": "221345" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "99b1c487-51ea-4a71-93a9-90d24cf1616e", + "owned-node-edge-point": [ + { + "uuid": "33608505-716b-48ac-bf3c-ba1e6d8e617a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221346" + }, + { + "value-name": "topology-node-local-id", + "value": "221346" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5b2c78b6-68ac-4389-963f-2632719df6d5", + "owned-node-edge-point": [ + { + "uuid": "82cb0918-4634-44a0-9ee2-796c00befbe6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221347" + }, + { + "value-name": "topology-node-local-id", + "value": "221347" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bd49b500-c7ab-4eea-9a55-9c19a249eadb", + "owned-node-edge-point": [ + { + "uuid": "5974a406-2414-4a96-a5f1-f00becb7a759", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221348" + }, + { + "value-name": "topology-node-local-id", + "value": "221348" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2dfafe88-2c38-48ff-ba67-1cef4893b507", + "owned-node-edge-point": [ + { + "uuid": "d73b55f8-b208-4700-9124-b82eafd3ec4b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-221349" + }, + { + "value-name": "topology-node-local-id", + "value": "221349" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "owned-node-edge-point": [ + { + "uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22134" + } + ] + }, + { + "uuid": "ec174292-cf83-4cfc-8d15-25d6e79165de", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22134" + }, + { + "value-name": "topology-node-local-id", + "value": "22134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "341a95d4-d65e-400f-8e6b-52c5e8f99b9e", + "owned-node-edge-point": [ + { + "uuid": "302c4c81-0f75-4e2c-a570-034d50171974", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "302c4c81-0f75-4e2c-a570-034d50171974" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2213" + } + ] + }, + { + "uuid": "a0cf6484-25cc-4de4-882b-07f0c580faf3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2213" + }, + { + "value-name": "topology-node-local-id", + "value": "2213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "342324c8-cd87-41fb-ac17-d232919e3f15", + "owned-node-edge-point": [ + { + "uuid": "37c065d5-79f4-4082-b101-2f5a9ff283b4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "37c065d5-79f4-4082-b101-2f5a9ff283b4" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-CU-UP-221" + } + ] + }, + { + "uuid": "03347489-93e7-4345-b11e-e16f3b119adc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-CU-UP-221" + }, + { + "value-name": "topology-node-local-id", + "value": "221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-cu-up-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "109ac2da-1f75-4fc1-a836-ee2ad5599432", + "owned-node-edge-point": [ + { + "uuid": "48930d83-abe4-4abd-b416-a78790836caa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222111" + }, + { + "value-name": "topology-node-local-id", + "value": "222111" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d6d57fc2-4c75-4c05-81f7-1e679f233ebb", + "owned-node-edge-point": [ + { + "uuid": "b2702580-b8e9-42e1-8477-e3664bf73f61", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222112" + }, + { + "value-name": "topology-node-local-id", + "value": "222112" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9b6e7858-cb77-4c85-88f8-dcd4e7faccf6", + "owned-node-edge-point": [ + { + "uuid": "0266a4aa-dbb2-46d1-b49e-40640579e3e1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222113" + }, + { + "value-name": "topology-node-local-id", + "value": "222113" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "30901377-d8e0-489c-9e8f-e2819baca7dc", + "owned-node-edge-point": [ + { + "uuid": "f56a6e85-7784-4a84-aa7c-86eceec7a615", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222114" + }, + { + "value-name": "topology-node-local-id", + "value": "222114" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "56416a28-6149-4694-a036-b49a6fa43460", + "owned-node-edge-point": [ + { + "uuid": "9e294014-c852-4423-9372-dc400e4aecf3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222115" + }, + { + "value-name": "topology-node-local-id", + "value": "222115" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c49a203c-7907-4ed5-a315-ff759ecbab4f", + "owned-node-edge-point": [ + { + "uuid": "90d4f34b-a1a4-4f5a-b329-4d8c5188e844", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222116" + }, + { + "value-name": "topology-node-local-id", + "value": "222116" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "dd684a46-5e3b-41e2-9337-0ec727b19716", + "owned-node-edge-point": [ + { + "uuid": "581a806d-8d65-4a52-8663-83e687864259", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222117" + }, + { + "value-name": "topology-node-local-id", + "value": "222117" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "97519051-910f-45e1-9798-d565ca0c63c8", + "owned-node-edge-point": [ + { + "uuid": "7ef35ede-80f2-402f-927b-6cd5b6d2da29", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222118" + }, + { + "value-name": "topology-node-local-id", + "value": "222118" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5b5c3ba8-6f45-43f0-840e-d32bad08f3c6", + "owned-node-edge-point": [ + { + "uuid": "bd308fb1-6735-4d0b-b2b7-dc1b531ca61a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222119" + }, + { + "value-name": "topology-node-local-id", + "value": "222119" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "owned-node-edge-point": [ + { + "uuid": "b26fe148-f678-402c-ae22-530a88506cd2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22211" + } + ] + }, + { + "uuid": "4268dfe2-4fce-4984-82cb-fc2fed4c4100", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22211" + }, + { + "value-name": "topology-node-local-id", + "value": "22211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e893a032-6688-45a5-aa7c-7d5dbe8d5c73", + "owned-node-edge-point": [ + { + "uuid": "cc2939c8-2ab3-4dd8-9980-a97dfe726d29", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222121" + }, + { + "value-name": "topology-node-local-id", + "value": "222121" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ddec8577-5b33-4545-8a36-02011c5e4b71", + "owned-node-edge-point": [ + { + "uuid": "22653284-317d-438a-a278-a991031ed2ca", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222122" + }, + { + "value-name": "topology-node-local-id", + "value": "222122" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cdf73593-bbc1-4d22-9f72-d114d453a9d4", + "owned-node-edge-point": [ + { + "uuid": "f29144a9-1f7d-47b8-8cb8-a9359c655807", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222123" + }, + { + "value-name": "topology-node-local-id", + "value": "222123" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7d59c376-5aff-4ba0-8508-dab0d3f9d7c6", + "owned-node-edge-point": [ + { + "uuid": "6afa6d56-4b56-40e5-b54e-bf3935a27a01", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222124" + }, + { + "value-name": "topology-node-local-id", + "value": "222124" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "23d7406d-df5e-467e-a57f-8fbb78889b35", + "owned-node-edge-point": [ + { + "uuid": "d0ba00d9-102c-4e02-817c-2f6d07840e38", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222125" + }, + { + "value-name": "topology-node-local-id", + "value": "222125" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "435866ab-7c71-40b2-967d-6ae98b76ade6", + "owned-node-edge-point": [ + { + "uuid": "619ff193-4b57-4ac0-a9e3-c9bdd35ff401", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222126" + }, + { + "value-name": "topology-node-local-id", + "value": "222126" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "06725e2c-999f-4ea8-87ba-02f48d02f0a7", + "owned-node-edge-point": [ + { + "uuid": "79774608-d5b4-42ab-ae50-80421eb671fc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222127" + }, + { + "value-name": "topology-node-local-id", + "value": "222127" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "86f297cd-d42c-43de-9731-50c5e1cd5ac8", + "owned-node-edge-point": [ + { + "uuid": "d77acb83-2046-4b32-9e88-468aef35b47b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222128" + }, + { + "value-name": "topology-node-local-id", + "value": "222128" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1a4e38e1-0e3c-4a80-bc51-50f0530e674a", + "owned-node-edge-point": [ + { + "uuid": "6e445ac3-97ab-4fbd-b5d2-43ed0781bc45", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222129" + }, + { + "value-name": "topology-node-local-id", + "value": "222129" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "owned-node-edge-point": [ + { + "uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22212" + } + ] + }, + { + "uuid": "7c4596b8-c48a-454e-8933-2c4c0a20fce6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22212" + }, + { + "value-name": "topology-node-local-id", + "value": "22212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7328694f-20b1-42c3-9e86-1b839f2c8eeb", + "owned-node-edge-point": [ + { + "uuid": "b069b131-3262-4aff-ab1b-ba019703c310", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222131" + }, + { + "value-name": "topology-node-local-id", + "value": "222131" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d7a9f308-9c8a-42e1-b281-6d71d5be1a21", + "owned-node-edge-point": [ + { + "uuid": "6d2b4174-bd6d-4a0e-9a75-2b7bcaf4699d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222132" + }, + { + "value-name": "topology-node-local-id", + "value": "222132" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c6f96494-8ebb-4b19-8738-e24af580fddc", + "owned-node-edge-point": [ + { + "uuid": "cc4a27b7-cc08-4d3c-94aa-bc55c8e8c4ce", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222133" + }, + { + "value-name": "topology-node-local-id", + "value": "222133" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "eed0808e-8340-4cec-b75c-fdf3f4a609d7", + "owned-node-edge-point": [ + { + "uuid": "cf121399-e097-48c1-a851-f49a7ae56800", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222134" + }, + { + "value-name": "topology-node-local-id", + "value": "222134" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f30f1580-29ff-44da-aabc-c0bd9cdbfe8b", + "owned-node-edge-point": [ + { + "uuid": "f9067ede-bbd6-4b26-b56c-4f5bfd387b24", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222135" + }, + { + "value-name": "topology-node-local-id", + "value": "222135" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4a52d817-b422-4aad-b51e-509d6ec2fa8d", + "owned-node-edge-point": [ + { + "uuid": "ac40edad-3e6a-4e03-a37a-a53a1f200f0d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222136" + }, + { + "value-name": "topology-node-local-id", + "value": "222136" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d4906a28-2445-464e-809e-5465f12fda76", + "owned-node-edge-point": [ + { + "uuid": "e551e038-2044-4d0c-803d-b6972c035999", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222137" + }, + { + "value-name": "topology-node-local-id", + "value": "222137" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "736690b9-717d-4664-8d8a-b7e372c438c3", + "owned-node-edge-point": [ + { + "uuid": "6e095a96-3c70-4ddf-b68b-5e56cfaac086", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222138" + }, + { + "value-name": "topology-node-local-id", + "value": "222138" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "de4e4894-870b-49e2-a974-58f53d66fe7b", + "owned-node-edge-point": [ + { + "uuid": "e25fcf43-3b28-41c9-9d73-38d946e06780", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222139" + }, + { + "value-name": "topology-node-local-id", + "value": "222139" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "owned-node-edge-point": [ + { + "uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22213" + } + ] + }, + { + "uuid": "80740c8e-885c-4638-b236-ff72deb282c0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22213" + }, + { + "value-name": "topology-node-local-id", + "value": "22213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "12b7cfd8-db74-4150-92b1-76ef69a5e84a", + "owned-node-edge-point": [ + { + "uuid": "3a3d472a-e9f4-44ce-991f-849c0e458f4f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222141" + }, + { + "value-name": "topology-node-local-id", + "value": "222141" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5874896c-3c7f-4a2b-9a53-3df082194d9b", + "owned-node-edge-point": [ + { + "uuid": "0cb311a1-7f4c-4ba5-a7e8-5068fa19c839", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222142" + }, + { + "value-name": "topology-node-local-id", + "value": "222142" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "683749a0-cf2a-4efe-b5a1-a660865eb61f", + "owned-node-edge-point": [ + { + "uuid": "4dcb1861-ab4f-4900-9c11-31cb3f577045", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222143" + }, + { + "value-name": "topology-node-local-id", + "value": "222143" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3da6b21a-e6cd-46ff-931d-7daccd08f882", + "owned-node-edge-point": [ + { + "uuid": "5c920c32-ff79-4a17-aaaf-59ae64f68111", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222144" + }, + { + "value-name": "topology-node-local-id", + "value": "222144" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "79011c91-6590-47fb-85d7-d86ea38e4a5e", + "owned-node-edge-point": [ + { + "uuid": "d29cd00f-d3c6-4fa6-bfe1-d12df814ee1e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222145" + }, + { + "value-name": "topology-node-local-id", + "value": "222145" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c20415dd-fb89-40c2-b5a8-ea887598c36e", + "owned-node-edge-point": [ + { + "uuid": "fa035d41-dbae-438b-b4fb-d92298248607", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222146" + }, + { + "value-name": "topology-node-local-id", + "value": "222146" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "36322b13-24c7-4474-b05e-f9489fbc068d", + "owned-node-edge-point": [ + { + "uuid": "1c34cc49-3897-4cbb-8dc6-9a3c34fe6eff", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222147" + }, + { + "value-name": "topology-node-local-id", + "value": "222147" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "43f9909a-9bb2-4d09-879e-d1ae9655268d", + "owned-node-edge-point": [ + { + "uuid": "85b76bd6-139b-4e80-94e3-980c71e7664d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222148" + }, + { + "value-name": "topology-node-local-id", + "value": "222148" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c44c8302-f4db-43d9-a6f9-a67de825184b", + "owned-node-edge-point": [ + { + "uuid": "5f4375b3-d6c1-4776-bc20-3b0ea1ae39c8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222149" + }, + { + "value-name": "topology-node-local-id", + "value": "222149" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "owned-node-edge-point": [ + { + "uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22214" + } + ] + }, + { + "uuid": "ee3c55f6-2cc6-41b6-9c1f-11e3fb086878", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22214" + }, + { + "value-name": "topology-node-local-id", + "value": "22214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2abdc4bf-199b-44cd-8ebd-a15ee242e890", + "owned-node-edge-point": [ + { + "uuid": "aadb4381-69c4-4fb5-9ace-9d86501c6860", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "aadb4381-69c4-4fb5-9ace-9d86501c6860" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2221" + } + ] + }, + { + "uuid": "0496230d-f84a-4a79-a9a2-d1cb68134ec8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2221" + }, + { + "value-name": "topology-node-local-id", + "value": "2221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b410ed67-01f3-49c4-be2e-02ad5ad082ad", + "owned-node-edge-point": [ + { + "uuid": "0b0a03fb-6028-4323-b16e-eba3806c3cc6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222211" + }, + { + "value-name": "topology-node-local-id", + "value": "222211" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "70bf2507-6cc9-42f9-b18f-463e94e66c6f", + "owned-node-edge-point": [ + { + "uuid": "0a790964-accc-46c3-8a43-85ef5e2ae2b7", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222212" + }, + { + "value-name": "topology-node-local-id", + "value": "222212" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "48c557df-8a00-4cca-8a95-d96721bccaad", + "owned-node-edge-point": [ + { + "uuid": "5f659d57-6e75-445e-bc6c-3c64d8d8e8ce", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222213" + }, + { + "value-name": "topology-node-local-id", + "value": "222213" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7f738806-7b0d-46d9-ab42-dbb3e5e77d2f", + "owned-node-edge-point": [ + { + "uuid": "6dcba118-3444-4018-991c-3d14ae3f642d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222214" + }, + { + "value-name": "topology-node-local-id", + "value": "222214" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "49eb7bc8-b3f3-4de2-9994-95bf49a83a4a", + "owned-node-edge-point": [ + { + "uuid": "50832e7a-c4e2-499d-a669-ba0bda2d2efa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222215" + }, + { + "value-name": "topology-node-local-id", + "value": "222215" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b893be13-30dd-4fab-9568-f081bceb2c1c", + "owned-node-edge-point": [ + { + "uuid": "d40c7344-f009-4782-bd55-9256e4ff8471", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222216" + }, + { + "value-name": "topology-node-local-id", + "value": "222216" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "27edac3d-aca0-4b8e-a81b-535d913d2f62", + "owned-node-edge-point": [ + { + "uuid": "1d63da66-0d34-422d-b9ee-177433d8e701", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222217" + }, + { + "value-name": "topology-node-local-id", + "value": "222217" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ce83ed04-c3d9-44ac-907c-acc28b055b8e", + "owned-node-edge-point": [ + { + "uuid": "d1818607-b31d-43d2-9b6d-f6aee677dcb5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222218" + }, + { + "value-name": "topology-node-local-id", + "value": "222218" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "3a0499d4-3268-49ca-879a-8e3bdf8be6b0", + "owned-node-edge-point": [ + { + "uuid": "0c58c966-e9fe-42bb-9d71-3b7818f692ce", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222219" + }, + { + "value-name": "topology-node-local-id", + "value": "222219" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "owned-node-edge-point": [ + { + "uuid": "0794d540-6767-424b-a1cc-675e36d1b523", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22221" + } + ] + }, + { + "uuid": "3ef43a6d-16aa-4e33-8743-d457526c3bf0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22221" + }, + { + "value-name": "topology-node-local-id", + "value": "22221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "34de5fa7-47e7-4796-a24e-ecedb1b07edf", + "owned-node-edge-point": [ + { + "uuid": "d4cd5223-e29a-472e-8c40-b754b40ab53c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222221" + }, + { + "value-name": "topology-node-local-id", + "value": "222221" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "60a50fb9-e065-42e3-a50b-f585427f0a58", + "owned-node-edge-point": [ + { + "uuid": "550b4a4c-0888-4fba-9fbc-49152d0b556d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222222" + }, + { + "value-name": "topology-node-local-id", + "value": "222222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "af079f14-5ff3-4546-a85b-f5351b267c2c", + "owned-node-edge-point": [ + { + "uuid": "8fde028c-6aa6-4c58-b943-0e5d87028463", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222223" + }, + { + "value-name": "topology-node-local-id", + "value": "222223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "0a0a5ee5-5220-4a45-932d-370138d4876a", + "owned-node-edge-point": [ + { + "uuid": "d1b09640-58b2-4d5c-8e8c-02480d12295a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222224" + }, + { + "value-name": "topology-node-local-id", + "value": "222224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f6e614a5-0fa1-41ef-ac1c-83d8af00a708", + "owned-node-edge-point": [ + { + "uuid": "fad4bf81-d3de-486a-b7f8-be822bf3d599", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222225" + }, + { + "value-name": "topology-node-local-id", + "value": "222225" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "bbe0d462-f686-43cc-82ef-c1d524ae40ed", + "owned-node-edge-point": [ + { + "uuid": "f1d5c4ce-e4a1-4140-bf54-51dd384f6211", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222226" + }, + { + "value-name": "topology-node-local-id", + "value": "222226" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "29d6cfdf-f5c9-4141-9567-5dc8a8b749db", + "owned-node-edge-point": [ + { + "uuid": "09c3f238-3a69-49ed-8dda-7e54d5d70f51", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222227" + }, + { + "value-name": "topology-node-local-id", + "value": "222227" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "054e317c-a04b-4b7a-8b77-8d5b195baeaa", + "owned-node-edge-point": [ + { + "uuid": "6b534124-50b0-43f2-a649-f342b9c19bbd", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222228" + }, + { + "value-name": "topology-node-local-id", + "value": "222228" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "961ab1dd-ceb0-46da-8253-171e015384ae", + "owned-node-edge-point": [ + { + "uuid": "34e17c4c-4f54-4e33-9cb2-3b2a12b68676", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222229" + }, + { + "value-name": "topology-node-local-id", + "value": "222229" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "owned-node-edge-point": [ + { + "uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22222" + } + ] + }, + { + "uuid": "bfc34234-0185-4f25-be1e-035bb5753dc0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22222" + }, + { + "value-name": "topology-node-local-id", + "value": "22222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "105db036-70aa-4b72-835d-24c4482ab30f", + "owned-node-edge-point": [ + { + "uuid": "312be370-782d-4ee2-b1d2-cfa753809876", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222231" + }, + { + "value-name": "topology-node-local-id", + "value": "222231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8ca96627-b7b8-4fee-b39e-d77f5336f671", + "owned-node-edge-point": [ + { + "uuid": "b51f2ecb-9c30-47c2-9179-a7794e800117", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222232" + }, + { + "value-name": "topology-node-local-id", + "value": "222232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c19be469-4034-4504-93d1-af983e1d2839", + "owned-node-edge-point": [ + { + "uuid": "096c2551-16be-4186-831e-c3a2721a7e29", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222233" + }, + { + "value-name": "topology-node-local-id", + "value": "222233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b29a77a5-d9cb-4916-9c42-3d1b802c13ca", + "owned-node-edge-point": [ + { + "uuid": "e4ab392a-8957-414a-a864-16a9b47ca941", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222234" + }, + { + "value-name": "topology-node-local-id", + "value": "222234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "45b101d6-135a-4082-b0aa-ea6b7c2f4c10", + "owned-node-edge-point": [ + { + "uuid": "7a2b61d4-1f28-4d1e-b4e8-0ec9d8df3ddb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222235" + }, + { + "value-name": "topology-node-local-id", + "value": "222235" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "4086d5c4-7aa6-4be3-b9df-098f81bc994e", + "owned-node-edge-point": [ + { + "uuid": "f893e932-589f-4c05-9094-56adab9417b2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222236" + }, + { + "value-name": "topology-node-local-id", + "value": "222236" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6fc3600d-d282-4767-9fd9-b2c48f832ab1", + "owned-node-edge-point": [ + { + "uuid": "f4d9fed1-ab6d-4c38-aa85-2588cb37e267", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222237" + }, + { + "value-name": "topology-node-local-id", + "value": "222237" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "73975a93-ef0c-44ab-9756-44fe90e40a6a", + "owned-node-edge-point": [ + { + "uuid": "86cd0233-f5e8-4c15-af87-bbc364e7e948", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222238" + }, + { + "value-name": "topology-node-local-id", + "value": "222238" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "cbf88d06-4cea-44ab-b15f-c71025199e5d", + "owned-node-edge-point": [ + { + "uuid": "9baba5f7-72de-42f6-9cbc-7adf70cc24a4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222239" + }, + { + "value-name": "topology-node-local-id", + "value": "222239" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "owned-node-edge-point": [ + { + "uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22223" + } + ] + }, + { + "uuid": "8889ec6d-a980-4ded-90f1-72aed41e0f8e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22223" + }, + { + "value-name": "topology-node-local-id", + "value": "22223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5bacd808-a6c4-4c96-bedd-488ca81b0eb4", + "owned-node-edge-point": [ + { + "uuid": "203149a8-74ca-4709-a9d3-afeaabbb06c1", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222241" + }, + { + "value-name": "topology-node-local-id", + "value": "222241" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "780edf93-b799-4365-b5ea-8f71a5f282f0", + "owned-node-edge-point": [ + { + "uuid": "3aba0701-7646-4469-9664-39a2aca40b7c", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222242" + }, + { + "value-name": "topology-node-local-id", + "value": "222242" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e095c024-da6b-4544-a81f-c5e805912c2e", + "owned-node-edge-point": [ + { + "uuid": "3d15e2a2-b374-4487-babe-0123ba34aa50", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222243" + }, + { + "value-name": "topology-node-local-id", + "value": "222243" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f7ba3654-d2de-4809-95a8-014fe9f3f610", + "owned-node-edge-point": [ + { + "uuid": "eeb9ac41-4c25-41cd-a1b1-e12315a44daa", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222244" + }, + { + "value-name": "topology-node-local-id", + "value": "222244" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "279913a4-8f80-4792-978f-a3d1b94dff35", + "owned-node-edge-point": [ + { + "uuid": "8f71a0a5-e2fb-4320-b56c-ab1367ee9b55", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222245" + }, + { + "value-name": "topology-node-local-id", + "value": "222245" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8acd7078-e23e-43c7-957b-443011539015", + "owned-node-edge-point": [ + { + "uuid": "dcd9b20b-34f4-446e-a2a2-17788d0d16b8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222246" + }, + { + "value-name": "topology-node-local-id", + "value": "222246" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7a42286c-f8ec-45e5-8a3f-308a9396fbbf", + "owned-node-edge-point": [ + { + "uuid": "880439c9-e194-4770-8b44-79f835a83ee3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222247" + }, + { + "value-name": "topology-node-local-id", + "value": "222247" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f9050511-f272-4a26-a8f7-6cd2e8740d25", + "owned-node-edge-point": [ + { + "uuid": "ebc5092a-ba43-4249-9bac-e9da4af60146", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222248" + }, + { + "value-name": "topology-node-local-id", + "value": "222248" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "7e70fe8d-2042-43f8-b3ad-c12c11167262", + "owned-node-edge-point": [ + { + "uuid": "a2e115ba-51e3-4b8e-8b25-e5e276f2d5cc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222249" + }, + { + "value-name": "topology-node-local-id", + "value": "222249" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "owned-node-edge-point": [ + { + "uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22224" + } + ] + }, + { + "uuid": "ced93b76-20b6-4f79-bd53-36eb837a3179", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22224" + }, + { + "value-name": "topology-node-local-id", + "value": "22224" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "80a326ff-5f0a-4260-96c4-6d0604f127c9", + "owned-node-edge-point": [ + { + "uuid": "312e1ab9-4d95-425e-8485-64f08eb00745", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "312e1ab9-4d95-425e-8485-64f08eb00745" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2222" + } + ] + }, + { + "uuid": "6e71d6c4-9ecf-4ce9-9895-bfd4bbf45294", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2222" + }, + { + "value-name": "topology-node-local-id", + "value": "2222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1a308095-fd2c-4097-8c91-64e843cc17dd", + "owned-node-edge-point": [ + { + "uuid": "dd2a3a98-c899-4fb9-8f10-09619f66cf36", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222311" + }, + { + "value-name": "topology-node-local-id", + "value": "222311" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "233b3bec-5287-42f9-84ac-70ccaea81871", + "owned-node-edge-point": [ + { + "uuid": "b82c38ed-663d-4ac8-bbde-dabbe8ca5fe3", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222312" + }, + { + "value-name": "topology-node-local-id", + "value": "222312" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "9db9112c-194b-4297-8e76-fd53934cfa7c", + "owned-node-edge-point": [ + { + "uuid": "cde562f8-dc37-4efa-ab59-aac8d0368182", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222313" + }, + { + "value-name": "topology-node-local-id", + "value": "222313" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5570540f-d9f3-4f84-bcdc-f8e189f1e1dc", + "owned-node-edge-point": [ + { + "uuid": "8c6f6766-1b83-4b07-b5ec-013c36c5b333", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222314" + }, + { + "value-name": "topology-node-local-id", + "value": "222314" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f96ab81d-1a6d-4695-baa9-8d836f760f0c", + "owned-node-edge-point": [ + { + "uuid": "41d39f9c-7551-4b93-9eba-5f9058201da0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222315" + }, + { + "value-name": "topology-node-local-id", + "value": "222315" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "fbca3656-49a5-42a3-b9bc-bcb02386fa34", + "owned-node-edge-point": [ + { + "uuid": "64682311-58f1-4986-8d39-648263d0becd", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222316" + }, + { + "value-name": "topology-node-local-id", + "value": "222316" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "684239f8-2ec7-4007-b7ca-3bcf01e7494d", + "owned-node-edge-point": [ + { + "uuid": "c160e64e-e02f-4ad1-b4fc-710fff44772f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222317" + }, + { + "value-name": "topology-node-local-id", + "value": "222317" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5e0b0b85-cf23-4611-b856-a555efc3c14b", + "owned-node-edge-point": [ + { + "uuid": "436fbd47-2bc0-43cf-8e4b-1e3ef6996c9f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222318" + }, + { + "value-name": "topology-node-local-id", + "value": "222318" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "6a610d64-de40-4563-a810-0327336fade1", + "owned-node-edge-point": [ + { + "uuid": "6edf0242-6b71-476b-8eb1-993a3f246fcb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222319" + }, + { + "value-name": "topology-node-local-id", + "value": "222319" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "owned-node-edge-point": [ + { + "uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22231" + } + ] + }, + { + "uuid": "ef49363d-7a54-4e08-849b-3fe8f8da9365", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22231" + }, + { + "value-name": "topology-node-local-id", + "value": "22231" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "59bee037-d8ae-44ca-b2e3-cc912bf6b04b", + "owned-node-edge-point": [ + { + "uuid": "48c40dd7-4678-4e6d-8929-6c7a4e2fc8c2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222321" + }, + { + "value-name": "topology-node-local-id", + "value": "222321" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "eea34611-d44a-4d43-88b0-e98d770ec949", + "owned-node-edge-point": [ + { + "uuid": "ae1406b0-9f56-4bb2-9087-84158160699f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222322" + }, + { + "value-name": "topology-node-local-id", + "value": "222322" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "54882920-f5d9-4625-9ffd-591bd73845f0", + "owned-node-edge-point": [ + { + "uuid": "6400b59e-2f25-4b44-b02b-370ade067741", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222323" + }, + { + "value-name": "topology-node-local-id", + "value": "222323" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "77131fb1-6f63-4573-abcb-d3286d1d0e20", + "owned-node-edge-point": [ + { + "uuid": "0c94e386-96ee-4ab0-a9b2-8023cd337705", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222324" + }, + { + "value-name": "topology-node-local-id", + "value": "222324" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "30886895-2e01-40c0-bbdf-8cb39f3c6da9", + "owned-node-edge-point": [ + { + "uuid": "496ab5af-6e4f-492c-a97c-43b655862eda", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222325" + }, + { + "value-name": "topology-node-local-id", + "value": "222325" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "8987ea7e-4679-4cd7-80f4-3f3713acbecc", + "owned-node-edge-point": [ + { + "uuid": "4db4c4ae-cc6b-4501-b5fe-6c417500bc37", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222326" + }, + { + "value-name": "topology-node-local-id", + "value": "222326" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "95b54b6c-6466-4f3d-86f9-93f00d940ca1", + "owned-node-edge-point": [ + { + "uuid": "ac3d0d9e-3f38-4f60-b211-28525fd00adc", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222327" + }, + { + "value-name": "topology-node-local-id", + "value": "222327" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "43706b1e-c2a6-45a7-ba5e-5d926ee1e239", + "owned-node-edge-point": [ + { + "uuid": "ca7c8849-7683-44d9-8621-ce56b75afd35", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222328" + }, + { + "value-name": "topology-node-local-id", + "value": "222328" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5b42e058-9d40-4d1f-b402-618d02366267", + "owned-node-edge-point": [ + { + "uuid": "3fcf7236-a524-4f1f-8e22-f27b5b743388", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222329" + }, + { + "value-name": "topology-node-local-id", + "value": "222329" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "owned-node-edge-point": [ + { + "uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22232" + } + ] + }, + { + "uuid": "711aa007-e659-4152-a608-a0b3427411eb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22232" + }, + { + "value-name": "topology-node-local-id", + "value": "22232" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "d7b6a86c-d916-4205-9729-45386e3edfb7", + "owned-node-edge-point": [ + { + "uuid": "df05f1f5-04f0-4484-8f72-fcf013b4d382", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222331" + }, + { + "value-name": "topology-node-local-id", + "value": "222331" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "354c56c1-9126-4f66-905e-b8a033ec9944", + "owned-node-edge-point": [ + { + "uuid": "4fa8dbe9-afe7-4ef8-9386-26a3cf9c9892", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222332" + }, + { + "value-name": "topology-node-local-id", + "value": "222332" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "461b9943-cd6e-46b0-b05e-1be110ede67b", + "owned-node-edge-point": [ + { + "uuid": "2fcb2392-2080-4a98-9c0f-acbb7f22e730", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222333" + }, + { + "value-name": "topology-node-local-id", + "value": "222333" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "94c83613-6487-4f56-aa02-19b368210175", + "owned-node-edge-point": [ + { + "uuid": "718bfd1a-b257-4090-a505-4d5005fc487f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222334" + }, + { + "value-name": "topology-node-local-id", + "value": "222334" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "60817af6-2626-40dd-808b-8c680905e85c", + "owned-node-edge-point": [ + { + "uuid": "89389ffe-25ab-41fd-a23c-7d6ab793dc02", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222335" + }, + { + "value-name": "topology-node-local-id", + "value": "222335" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a38da3ca-8832-4f35-b5c2-24917a0fb2b4", + "owned-node-edge-point": [ + { + "uuid": "70e4cef2-0f85-4c5b-a2d5-05c00d52827e", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222336" + }, + { + "value-name": "topology-node-local-id", + "value": "222336" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "f2cc3eea-5516-4ddd-a8b3-6dd7d29593ac", + "owned-node-edge-point": [ + { + "uuid": "05af3a5e-a348-4a48-8a67-fe656bd6e3e0", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222337" + }, + { + "value-name": "topology-node-local-id", + "value": "222337" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "5a6b679c-4e16-418d-9683-b666037c6fd1", + "owned-node-edge-point": [ + { + "uuid": "2b2e7bd2-4adf-4fe0-82d4-d5bc654d4f21", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222338" + }, + { + "value-name": "topology-node-local-id", + "value": "222338" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "494d4784-af94-419a-8b88-cc31a8f7bf00", + "owned-node-edge-point": [ + { + "uuid": "b5fa361e-0554-43e8-ac3d-cb3c75fcd70d", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222339" + }, + { + "value-name": "topology-node-local-id", + "value": "222339" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "owned-node-edge-point": [ + { + "uuid": "81fdeef3-4820-4940-87b3-0f366dc99587", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22233" + } + ] + }, + { + "uuid": "1f7dcc01-ce3d-4e6a-863b-63a3f70448bf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22233" + }, + { + "value-name": "topology-node-local-id", + "value": "22233" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "636664f3-9ce5-41e0-a829-f1948fd99713", + "owned-node-edge-point": [ + { + "uuid": "f18ae3f3-483c-425b-b4f5-50cba25a5503", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222341" + }, + { + "value-name": "topology-node-local-id", + "value": "222341" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "c358d90a-5da7-47cb-bef9-767509ede420", + "owned-node-edge-point": [ + { + "uuid": "e4568ca4-f159-4d00-8896-8c9409283524", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222342" + }, + { + "value-name": "topology-node-local-id", + "value": "222342" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ebf8e6b2-497e-4632-aad6-91364ecaf522", + "owned-node-edge-point": [ + { + "uuid": "bacd2be8-ff1f-4f29-86fc-c2e807aebadd", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222343" + }, + { + "value-name": "topology-node-local-id", + "value": "222343" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "a891a576-6803-43ac-8d1d-61dc8b5a3446", + "owned-node-edge-point": [ + { + "uuid": "6786904f-9a8c-4e1e-acb3-d81535428695", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222344" + }, + { + "value-name": "topology-node-local-id", + "value": "222344" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "18d10e63-9a4e-48c5-8ca6-847438fc45f9", + "owned-node-edge-point": [ + { + "uuid": "cfe30700-dcdc-4364-8a61-750562d2c9c9", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222345" + }, + { + "value-name": "topology-node-local-id", + "value": "222345" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "2d8fbfba-94db-4369-b6c9-cdda8d73667e", + "owned-node-edge-point": [ + { + "uuid": "7281382b-796a-490a-a035-362387682a5f", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222346" + }, + { + "value-name": "topology-node-local-id", + "value": "222346" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "696f5abc-e211-4286-884f-80d9d94d320f", + "owned-node-edge-point": [ + { + "uuid": "e44975e0-8cba-43d6-a93d-479e878995f4", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222347" + }, + { + "value-name": "topology-node-local-id", + "value": "222347" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ae7884c0-6f3a-448a-9b9d-bc244752a8ca", + "owned-node-edge-point": [ + { + "uuid": "402178f9-b1bc-4cea-aeaf-db999f073eaf", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222348" + }, + { + "value-name": "topology-node-local-id", + "value": "222348" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b3b6982a-3eb5-4c03-8492-3481136f7cba", + "owned-node-edge-point": [ + { + "uuid": "063e879b-b552-4b8c-b0dc-349801115ae6", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "UE-222349" + }, + { + "value-name": "topology-node-local-id", + "value": "222349" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:user-equipment-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "owned-node-edge-point": [ + { + "uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-RU-22234" + } + ] + }, + { + "uuid": "2092cf10-c9f8-42f1-ba2d-79ddbe153958", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-RU-22234" + }, + { + "value-name": "topology-node-local-id", + "value": "22234" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-ru-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "1ffae6ad-5bff-4504-bece-9e2ef60a5dd3", + "owned-node-edge-point": [ + { + "uuid": "d568ae4d-2422-4f75-acc1-2df64ce1e1fb", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "d568ae4d-2422-4f75-acc1-2df64ce1e1fb" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-DU-2223" + } + ] + }, + { + "uuid": "f56f662f-f0bd-4c69-a114-d6deba9e6fc5", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-DU-2223" + }, + { + "value-name": "topology-node-local-id", + "value": "2223" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-du-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "ef00b7f1-c9b3-4607-a148-2d697034fb41", + "owned-node-edge-point": [ + { + "uuid": "a1b6718a-f915-41a6-aa23-c527f808fba2", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "a1b6718a-f915-41a6-aa23-c527f808fba2" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for O-CU-UP-222" + } + ] + }, + { + "uuid": "7831d0d8-e525-42c5-8c55-01369bb71692", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "O-CU-UP-222" + }, + { + "value-name": "topology-node-local-id", + "value": "222" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:o-cu-up-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "45f65655-cdb4-4984-9c80-b4f86ed1c592", + "owned-node-edge-point": [ + { + "uuid": "72e68ac6-3e9e-4196-b8ee-97ca4d35b30b", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "72e68ac6-3e9e-4196-b8ee-97ca4d35b30b" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for NEAR-RT-RIC-22" + } + ] + }, + { + "uuid": "c1593743-fac9-47bb-abce-729bdaebffa8", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL" + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "NEAR-RT-RIC-22" + }, + { + "value-name": "topology-node-local-id", + "value": "22" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:near-rt-ric-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + }, + { + "uuid": "b4fb8f4b-d54f-45a5-838e-198f6a9d60e5", + "owned-node-edge-point": [ + { + "uuid": "1d3f848e-ab34-4336-9f71-460c15261955", + "lifecycle-state": "INSTALLED", + "link-port-role": "SYMMETRIC", + "operational-state": "ENABLED", + "administrative-state": "LOCKED", + "layer-protocol-name": "ETH", + "supported-cep-layer-protocol-qualifier": [ + "tapi-dsr:DIGITAL_SIGNAL_TYPE_GigE" + ], + "link-port-direction": "BIDIRECTIONAL", + "name": [ + { + "value-name": "interface-name", + "value": "1d3f848e-ab34-4336-9f71-460c15261955" + }, + { + "value-name": "interface-description", + "value": "Simulated interface for SMO-2" + } + ] + } + ], + "name": [ + { + "value-name": "topology-node-name", + "value": "SMO-2" + }, + { + "value-name": "topology-node-local-id", + "value": "2" + } + ], + "lifecycle-state": "INSTALLED", + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "operational-state": "ENABLED", + "o-ran-topology:function": "o-ran-common-identity-refs:smo-function", + "administrative-state": "LOCKED", + "o-ran-topology:geolocation": { + "longitude": "0", + "latitude": "0", + "altitude": "20000" + }, + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "layer-protocol-name": [ + "ETH" + ] + } + ], + "link": [ + { + "uuid": "58b2c3e2-aa9a-42e9-99f9-553e90c95cdb", + "name": [ + { + "value-name": "topology-link-name", + "value": "NEAR-RT-RIC-11-SMO-1" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f63fc9d3-a14b-4a68-9466-4300a5de692b", + "node-edge-point-uuid": "58b49d3d-46b0-4db0-b237-0f1f7fdeacf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dc0174-0ad2-4735-9073-bf91cb514cd8", + "node-edge-point-uuid": "23500571-275a-4f16-9bf1-8c0ce4dee773" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d0478b50-fb57-4be2-b3f3-3c814254729f", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-CU-UP-111-NEAR-RT-RIC-11" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dc0174-0ad2-4735-9073-bf91cb514cd8", + "node-edge-point-uuid": "6d4937c0-34c5-44dc-bb81-324edccbaec7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1117f523-34be-444b-a390-a39256fd4bce", + "node-edge-point-uuid": "16ae8c52-b431-4c83-838d-0f3b7d914034" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4ca03998-4ca0-473e-8952-661872106706", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1111-O-CU-UP-111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1117f523-34be-444b-a390-a39256fd4bce", + "node-edge-point-uuid": "d72009ee-26ee-499a-9e6b-3436b42684bf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d336d517-6e8b-4503-a65e-a8bb339feab4", + "node-edge-point-uuid": "a429fa3b-5b78-4014-aee7-ecb264c40e48" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "137923f3-130c-4652-a741-7c69174897d8", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11111-O-DU-1111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d336d517-6e8b-4503-a65e-a8bb339feab4", + "node-edge-point-uuid": "2564a737-f25f-4b0e-883e-936aec601f32" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "52d8f274-cdb7-4d9a-9080-cef2e8afb09a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "aadde30d-81dc-4c61-bea4-a504982bcc53", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111111-O-RU-11111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f2163773-9400-4439-a064-bc000df9ff0e", + "node-edge-point-uuid": "791da0b0-04f8-404d-b653-9ca265ceb685" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5bd9fff2-7320-4f15-b8df-b33ceed5e623", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111112-O-RU-11111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f9652c02-64cc-4f18-a80c-4eac0f4d52da", + "node-edge-point-uuid": "f3000387-f57e-49ea-8f8c-fa84b198a458" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d5152c69-3c7b-451f-8b59-b8caa27e8d1d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111113-O-RU-11111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "336cc7fb-e907-4d91-b7eb-6cfdabe815dc", + "node-edge-point-uuid": "292415b3-3ca5-4f9b-9b14-c85a8a33d138" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "30800fce-64f8-49a8-b5de-a1ce2dac1fce", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111114-O-RU-11111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "15259d1e-e94a-4fbe-97cf-5ed984776ff7", + "node-edge-point-uuid": "be5a31ca-1df8-4283-be23-6e4b5486d8af" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4452c9a1-2a55-47e2-a90e-f5f36abffb66", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111115-O-RU-11111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "110e82b1-18f9-4979-ac15-338f450087a1", + "node-edge-point-uuid": "a8d81d41-14ee-4476-8037-f1e3d812d101" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2b34525e-b54d-4fc8-ae85-12655c449a05", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111116-O-RU-11111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "69ff0e0c-63a6-46c0-8755-11e8ce93e487", + "node-edge-point-uuid": "48be9fe8-790b-42b2-ab4d-80b6d261a480" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b469f7e8-821e-4943-ac8f-504d85a671b5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111117-O-RU-11111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ac95a4b-6ec7-4875-8a50-c7eedee4ea25", + "node-edge-point-uuid": "0960220c-6ec9-482c-b172-11ee4581bae9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fd30919e-edca-4e39-b73c-fbb3ac225dc1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111118-O-RU-11111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cef878d9-8bbf-40b6-9403-f1b649378801", + "node-edge-point-uuid": "959a7ebf-f387-4257-b948-c003e98d5720" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "99373873-3b05-4dca-be51-6b34f622c3bd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111119-O-RU-11111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7def51-df2d-448f-a754-a008258fb03f", + "node-edge-point-uuid": "58e4bc58-1e3c-4ca0-83a1-1ac7d7761fda" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "620d5ec8-6bb0-4411-9c6e-f04f2b5a30bd", + "node-edge-point-uuid": "e8a06e0e-5dea-49aa-b864-48bd5ca41210" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ca861d91-cc3e-464a-b662-19ad1f0e6050", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11112-O-DU-1111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d336d517-6e8b-4503-a65e-a8bb339feab4", + "node-edge-point-uuid": "2564a737-f25f-4b0e-883e-936aec601f32" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "7dfe04fd-6d85-4c97-ba96-721302e6c581" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "835186dc-1c71-4d01-98e1-ef46a4e942f6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111121-O-RU-11112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "40138fbe-021d-4e9d-84f6-91b8e7d73d35", + "node-edge-point-uuid": "3e238a77-18bf-4f13-83ef-21cd49414eb7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ee119ad7-a70a-41e5-ae1e-dea259f53287", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111122-O-RU-11112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2ac5f2a7-545f-4391-8c12-214e67b52a1a", + "node-edge-point-uuid": "1134a4f6-2195-48b9-ab42-c3785bbe6ebc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "67b2c3e9-57c6-42a6-82a4-538f951b751e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111123-O-RU-11112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1215b86f-02bb-4a6c-a002-8f3561adba8d", + "node-edge-point-uuid": "42eecee3-cf2d-4012-9a3f-bb72a398f03c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "23d2f019-ffe1-4b44-80b6-5fe315f8b05b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111124-O-RU-11112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7956883d-990e-4b3f-878f-ecc25573f54f", + "node-edge-point-uuid": "d4d32f02-06a7-437f-960f-fa46a9892dee" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "02eb473a-a288-4800-8224-318073bd1d4b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111125-O-RU-11112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f2cce5e1-4128-4e7e-a8c4-377b7ca0fc2d", + "node-edge-point-uuid": "0670ee3d-e777-4042-b4a0-092952493699" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d01be393-271f-4af1-9820-5cdc4cb737da", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111126-O-RU-11112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f3d8f9be-cba7-4d69-9bd9-90c7bf457588", + "node-edge-point-uuid": "472bd52a-f1b2-4d73-87b1-fd130b9818d2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "54a686d5-98fe-4021-a20e-1b63c665a93b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111127-O-RU-11112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "33106cf1-47a5-4cd5-9291-681503cece90", + "node-edge-point-uuid": "6c583e64-70a8-4c7d-82fc-f469803c04bc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "df1327a3-4bc8-4547-8b85-02ffd4d8b8ab", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111128-O-RU-11112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "128e6333-a0fc-4d7b-ab82-031971c4b7ed", + "node-edge-point-uuid": "c12b96a9-e31b-413b-84df-28c0d04ba3bf" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ec56f9e6-1626-4eb8-b9f5-3c2c49ffbcba", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111129-O-RU-11112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8126c2a5-c34a-4d7d-85d4-e854bc1adc9f", + "node-edge-point-uuid": "f8143196-f6a8-46d5-99f8-50afd2e38be8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67eba53e-39d4-4609-b827-5c730598b4bd", + "node-edge-point-uuid": "cbd88085-7bf0-4c01-8c4e-bac33a516c9b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8bda7d99-69ff-45a7-b083-d08c93f72ebf", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11113-O-DU-1111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d336d517-6e8b-4503-a65e-a8bb339feab4", + "node-edge-point-uuid": "2564a737-f25f-4b0e-883e-936aec601f32" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "522138e3-4a84-4522-a41a-f55984be3fe4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e8be475c-4036-493e-b960-329cd5c9b6af", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111131-O-RU-11113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bceb3ef8-0689-450d-b6d9-07f6e5850591", + "node-edge-point-uuid": "64a577ab-df89-4000-a68f-d15146c836ae" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a09e0efd-a2bc-4148-ae66-015d004f9fb8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111132-O-RU-11113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "52e32962-c49c-4f0b-9c1a-b2f841e95f8c", + "node-edge-point-uuid": "3866be18-fefb-45c8-88bd-577497f1ff41" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c6c99214-1ddc-4c96-b61f-16b2e2b59917", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111133-O-RU-11113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "56c6718a-c826-4ea8-a7c0-844120eb9166", + "node-edge-point-uuid": "cc9fb91a-29ec-4472-bb36-0b95e1f024aa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a9cb5469-a905-4bd5-9da0-e58a4d63e394", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111134-O-RU-11113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "431af8cb-439c-4c00-9322-fda6c165f23e", + "node-edge-point-uuid": "837e056a-459f-4725-ab37-88af1090ad7a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "622a9bd1-515a-4fbd-bc11-5265c460fa6d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111135-O-RU-11113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dbb077be-c347-4618-89c9-9c8fb09a0678", + "node-edge-point-uuid": "bb347c09-4756-4a3c-b936-888924f4c54f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "491d4f51-b97b-4fc8-a985-9c65faa91a18", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111136-O-RU-11113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0266b646-31cf-4c27-815b-be29f4ba3c7e", + "node-edge-point-uuid": "209f1d0e-376e-46ea-8932-12ec1e3ce743" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "15173e88-d6c5-4d91-9a09-f89e3106bdf1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111137-O-RU-11113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99550116-9db2-45f0-8271-0b3e80e44ddf", + "node-edge-point-uuid": "6441e774-956a-42d2-a12c-43df10a1856a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1079eca5-c756-4182-baa3-75ca0b3aa62f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111138-O-RU-11113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9ff78550-1dac-437a-96e3-bb7e0cbc48ec", + "node-edge-point-uuid": "fae0d615-70e0-4b3e-8d21-4dc1f459bd16" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "162a5fe9-8381-40bb-9050-c9aedc1620da", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111139-O-RU-11113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "660137ef-ce7f-4de5-bd51-2cdac6fdcabc", + "node-edge-point-uuid": "23212892-0fd2-4c05-a9cb-1868e57f84ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "339463c4-e374-462f-9f06-3ae7a74c1a79", + "node-edge-point-uuid": "aa774e85-8fa4-41d2-ac5a-279be6eb19ae" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d7640d27-b153-4988-a04d-df18576ab12f", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11114-O-DU-1111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d336d517-6e8b-4503-a65e-a8bb339feab4", + "node-edge-point-uuid": "2564a737-f25f-4b0e-883e-936aec601f32" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "f3a59998-0029-4daf-976a-5a073be58544" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5dcf774b-860b-4e40-aac3-1b6e8abe45cf", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111141-O-RU-11114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9000f80e-baaf-4d42-81b4-f569c297ef1f", + "node-edge-point-uuid": "6f612f9a-7d37-4bf1-8350-4fc566ee5dc7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "492fed15-8638-40f7-831f-2b7b6b732ab4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111142-O-RU-11114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d71cdea4-62fd-4bf1-ba45-1a2baab2ff17", + "node-edge-point-uuid": "9638d954-1115-4377-a7b3-795e31d8955d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ea7b43da-9698-48b9-b477-d5b828442cf2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111143-O-RU-11114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "babab3fd-be6b-4fb5-b406-017153d4948a", + "node-edge-point-uuid": "5bfb27c7-245e-4587-9bba-8fae030b1b3c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c20515b2-6eeb-42ad-862f-23e06be013f7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111144-O-RU-11114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a9e61cf4-fe46-4844-bd4e-adb1add16710", + "node-edge-point-uuid": "b01833cd-b9d4-4bb9-8f2e-5fb24c84cf00" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "dede906c-1d24-4d2c-ab75-5c5a5776d7c8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111145-O-RU-11114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c321b651-f15a-4f57-b12b-a7cc21f2b477", + "node-edge-point-uuid": "eba33c12-971c-49ba-92f7-eb0e8f298056" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8bff2eb3-80be-47aa-813c-88b63e2e52a8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111146-O-RU-11114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5cf12815-92ec-4fdc-ae8d-f057aa02b5bb", + "node-edge-point-uuid": "d723f05c-cf49-48ff-8d5d-bf6b269c9444" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "551bb0c7-201f-4f9e-887c-ebc92b4e2866", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111147-O-RU-11114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1a0a62ba-9919-4361-9e9f-aa815c003bd6", + "node-edge-point-uuid": "3fe131a1-8b2e-4fbc-832e-d2d03373a439" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "09d9e259-39b0-4694-9a0b-9de7c1026451", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111148-O-RU-11114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d814ac3e-d254-4605-8d2e-c70214339227", + "node-edge-point-uuid": "830cce5b-9340-4708-93da-a438aee3fbef" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "62b874cc-d3f8-4af2-8f30-6203d1a066f6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111149-O-RU-11114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46a497a8-35be-4ac5-abd0-db8023af7d47", + "node-edge-point-uuid": "14fea45b-fd49-4e43-a68e-9f973ee91a80" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "443d29d1-d4dd-46fc-8880-3c0089df9571", + "node-edge-point-uuid": "124515dd-cb90-4fce-87d8-e1e26519c525" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b9bdc82d-6d51-420a-8b49-d9ebded35b61", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1112-O-CU-UP-111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1117f523-34be-444b-a390-a39256fd4bce", + "node-edge-point-uuid": "d72009ee-26ee-499a-9e6b-3436b42684bf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a5fcdb64-45ee-4ed4-8258-bd96c9884473", + "node-edge-point-uuid": "7c71410a-1c45-4d12-9c88-c7b6a8d227d4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "17e073b1-9a1c-4f00-8d31-f923494b9097", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11121-O-DU-1112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a5fcdb64-45ee-4ed4-8258-bd96c9884473", + "node-edge-point-uuid": "0057d8d7-d41e-4b0f-836a-1dbbef470ddb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e1977b3e-d0ff-46e6-9185-fe281411a974" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "650d0af8-dea9-428d-9205-4fdc6390729c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111211-O-RU-11121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f29c8636-88d5-488c-98a3-6253de0b32bc", + "node-edge-point-uuid": "62a83672-1249-4f65-bacd-37d4202732dd" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9ec99d46-45a9-4fab-970d-5e1ed96ee3a6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111212-O-RU-11121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9cc3d529-8664-4be9-8c9d-f4b95d1844eb", + "node-edge-point-uuid": "20186f2a-ef99-412c-a07c-0afd56732cdf" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4066901e-ad57-4dbb-841c-5292ab15739b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111213-O-RU-11121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7e79a3cb-a776-4848-ba0e-5d9101bcc610", + "node-edge-point-uuid": "216e591f-1890-40c3-b272-19c578966be3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "044c2026-e2cf-4e39-936f-d54d56f03795", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111214-O-RU-11121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "020de2a1-deef-49b5-852c-73cc6f4ccb23", + "node-edge-point-uuid": "7bf0cf42-8feb-48c8-93e2-95dd857396b6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ab6e707f-0ae1-40b9-a02f-c2a5ba5ff402", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111215-O-RU-11121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "df7f4d0c-064c-4d9b-8b71-544e5143cb25", + "node-edge-point-uuid": "e73bcfdf-a24b-4ed4-903b-5665d54cbd3e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6dbcf3ad-3411-4125-b523-78378bb6bb92", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111216-O-RU-11121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c31361f-dc22-41f8-8de4-497261714a7d", + "node-edge-point-uuid": "aaa59dd6-e177-4128-984d-f7615d31dccd" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9ed275e7-c5d7-40bc-8546-c5246f14d906", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111217-O-RU-11121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fbabe830-0087-4106-aac6-f8a59f901ac8", + "node-edge-point-uuid": "93b22b6f-1364-458c-a0c4-f12132830368" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7d0d595e-5915-4733-85bf-8efc14bd530e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111218-O-RU-11121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7a148aa3-4dcb-405a-8897-7cc53b334cd3", + "node-edge-point-uuid": "c61bc549-bd17-42ab-8311-06d0212f83c5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e3e12c33-dd2f-434c-8cca-6fcb9491b93b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111219-O-RU-11121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a596ebf-0011-407f-9718-d566522b7752", + "node-edge-point-uuid": "e2111308-caad-4230-9573-ceab9e275665" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c1387bc2-d55c-4960-841b-b765b7c09191", + "node-edge-point-uuid": "b41fcdaa-9c71-4c9b-8eef-25b06a95deaa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "415a330f-3cf5-419a-a2b5-7cbebb77ec89", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11122-O-DU-1112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a5fcdb64-45ee-4ed4-8258-bd96c9884473", + "node-edge-point-uuid": "0057d8d7-d41e-4b0f-836a-1dbbef470ddb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "6e2dbe33-6586-4e00-8f62-49162931e0c7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5f35c19b-d88a-450a-9501-cdad3cc76c11", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111221-O-RU-11122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "56160ae6-3d5f-48f5-91a5-d1fa949f32f0", + "node-edge-point-uuid": "a9a01f8d-497a-45df-824d-5432710053d7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f25181ed-f76f-4552-b04d-cf037e1faf48", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111222-O-RU-11122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c9a6eda4-ed9c-4d74-bc49-69b23805a0e5", + "node-edge-point-uuid": "460fe7ec-50a3-40a4-9c4b-0a433100abb6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1d6368b1-45f4-4fda-9ba8-df034e05e786", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111223-O-RU-11122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "676eea5d-0b97-4a84-ab38-6971c4cdd7f8", + "node-edge-point-uuid": "afc49783-e035-4f48-a3bd-cbb3c93918b3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cd6e16ce-93a1-459b-b57d-47deca6de725", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111224-O-RU-11122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cf97ce2d-b161-476a-a777-21ad89a96400", + "node-edge-point-uuid": "2e63620b-fbad-4d9a-9770-122dc64da064" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "733403e8-6301-4fb1-912f-7084d2c03ddb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111225-O-RU-11122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2aec8937-329a-481f-9aed-43ffc139d20e", + "node-edge-point-uuid": "7a1cc47e-9f4a-4c28-8397-38b67388fee6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ff9b62c8-8956-4411-a3d6-467807e02f1b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111226-O-RU-11122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a0f08a0a-b9ae-4399-8fd4-04ed06aba77e", + "node-edge-point-uuid": "6d469158-a11e-415a-ac36-58e095772f2b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c6be7af7-93c9-4b49-a701-8ae950986a96", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111227-O-RU-11122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "801fcec6-8d76-4d35-a1b2-32c58603c5fe", + "node-edge-point-uuid": "3f29c99d-c5cd-45e4-a27c-77c434ad2a96" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "087a56f5-057a-4d89-acd5-9611084a8246", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111228-O-RU-11122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1696d9f6-3da5-4986-a399-47b6d5f5b25d", + "node-edge-point-uuid": "9682e253-6deb-4dc9-86e2-cd45bf7fd957" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8ed9672e-40b0-4eb0-9657-fa79f7471cc0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111229-O-RU-11122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e468319-8630-40d6-b3a1-3539e1cda7b8", + "node-edge-point-uuid": "d0bbeaf1-df60-4779-93ff-077e1c52f9cf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed27c545-6b5d-492e-8a11-440068e39f8b", + "node-edge-point-uuid": "7b6f0ddd-dda6-42bc-b2d2-c427cdd04fa4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "394dd721-2dd0-491c-b02e-0359d2a1d9d5", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11123-O-DU-1112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a5fcdb64-45ee-4ed4-8258-bd96c9884473", + "node-edge-point-uuid": "0057d8d7-d41e-4b0f-836a-1dbbef470ddb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "f1e4e9e2-2277-487b-b492-9cda176095aa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5def2b1d-c171-464b-8a18-681c4f12dac7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111231-O-RU-11123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e380701-67da-4c42-94d6-cb99b1d93b59", + "node-edge-point-uuid": "17a9d870-2971-4846-9e92-6a72121b2992" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3445e73b-e945-4440-aa8d-0949882ed977", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111232-O-RU-11123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d2d88a30-55b3-44bc-b6a8-56dbb5d34dba", + "node-edge-point-uuid": "7f1bfe20-07ad-4d15-b63f-5104b41aba9f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "58ec5bb3-ceb5-48b8-9651-b281cbe37bea", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111233-O-RU-11123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7905ca9f-d417-45f5-abdb-0fcbbe2dd8fb", + "node-edge-point-uuid": "188a8307-1da6-4dd5-b200-1add56a87512" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "11983546-3175-4758-aec3-8aba506184c6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111234-O-RU-11123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "91194e39-18cc-4b6d-ae26-f76e65b86c4f", + "node-edge-point-uuid": "ee13da13-a467-4d6e-ab2a-b7f4f24f1c14" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2bc2d5e3-d470-4c5c-a7d1-c4ed25cb28d6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111235-O-RU-11123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7758ca7c-5f72-489c-9ef0-e64de6b9296d", + "node-edge-point-uuid": "b9ec88c9-bff3-4cab-82b1-62d4e344b917" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6ece8b78-95c4-49a9-bc54-282088678663", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111236-O-RU-11123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3294f5cb-d6ce-4d93-aa10-eac05088b3b9", + "node-edge-point-uuid": "dd8435e7-0543-4e53-9a56-65cff8fce192" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1e1af6fb-e092-4056-9270-91e97e191177", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111237-O-RU-11123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5094af70-7909-42db-859f-ef744711f997", + "node-edge-point-uuid": "8112e768-7075-4a69-80ea-2de8d0096748" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "00106ea5-5b20-44a6-946c-2ce097eea45e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111238-O-RU-11123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "09b366de-70da-4da0-a79d-d15e79a16493", + "node-edge-point-uuid": "f3b609c5-d97f-495f-8246-c8a33b676333" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f772f23b-5883-4c8c-948f-5235c880616d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111239-O-RU-11123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e11b05a-448a-41f1-ae4c-a540c912d2ce", + "node-edge-point-uuid": "6f9c407d-a794-4bb3-8aad-f105dd3b9ef9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a054f993-a259-43c1-8ae2-ca0b6e218ed2", + "node-edge-point-uuid": "eb1e82ba-6340-466c-bd27-5af4d2f908fe" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8b08a760-59b7-4589-adfd-c6ba825045b4", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11124-O-DU-1112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a5fcdb64-45ee-4ed4-8258-bd96c9884473", + "node-edge-point-uuid": "0057d8d7-d41e-4b0f-836a-1dbbef470ddb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "9d9d4024-abcf-46c9-a657-4b9161561811" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6a013d15-5cbe-4608-ab88-17bf612ad0d9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111241-O-RU-11124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "502c6334-c4c8-4341-b611-c23a72242e5a", + "node-edge-point-uuid": "8aea6c2a-bbc7-483e-b978-c47f4b46674a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0e7dfcf3-5b8d-464d-a5f6-28cda26c610d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111242-O-RU-11124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "82e34800-b2ae-4004-9521-13ba7ab3e0b7", + "node-edge-point-uuid": "a9d97976-ffba-4f2f-861f-320805852e5b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e81734ed-07d0-43fa-a2e5-05c4241f314c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111243-O-RU-11124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fb3d314f-863b-4ed9-9d10-dfb614736195", + "node-edge-point-uuid": "261ecab3-4b28-4e93-8729-334511c29442" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f7ae62b3-56f8-4807-814a-58a91b720038", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111244-O-RU-11124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1a5b2033-6910-40a8-937b-1683a3202346", + "node-edge-point-uuid": "0f5f8ffa-6f9b-4a82-9016-22c1a78f40df" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "86dad85c-73bc-429d-98e7-5ecf646476e8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111245-O-RU-11124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f2f93446-655b-4b8b-89bc-d9f1db5f0967", + "node-edge-point-uuid": "1976fc7d-e787-4475-b9f9-c09c935e3db3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "94b2d78f-d7da-467d-a59f-9c06172b427f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111246-O-RU-11124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f51fc25c-deef-4bce-9f02-9ee4a44f36c3", + "node-edge-point-uuid": "66ff07d3-c307-447f-990b-a6a9e7ed80cc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5fe271b8-455d-4cf4-9664-f2cfd3f34296", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111247-O-RU-11124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "48ba133f-ef47-45ac-8954-ebfba81a0e8c", + "node-edge-point-uuid": "1b8b9414-c2b7-4d69-a21f-56f4f58a3fd2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8947e014-6c7e-4782-9437-9e261dd104e7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111248-O-RU-11124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d26e5f65-401a-4b27-a78c-0d4a2ea4a0f4", + "node-edge-point-uuid": "e2666560-ed83-4f04-bee5-4caaf9e9e103" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e7f8b2fb-182b-431b-90aa-732d56f34e49", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111249-O-RU-11124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2e3b2eb5-4a3f-4f60-93b1-8bf575c3dff1", + "node-edge-point-uuid": "2a15bfd7-92e9-4b17-a4d4-8362115a1b34" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "80841bf1-796c-44fe-b4fb-34eeca869469", + "node-edge-point-uuid": "334cb3df-84c4-427e-a43b-5793f604dc78" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6bea6772-0b0c-4e41-a8e8-773aec7234f1", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1113-O-CU-UP-111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1117f523-34be-444b-a390-a39256fd4bce", + "node-edge-point-uuid": "d72009ee-26ee-499a-9e6b-3436b42684bf" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3baaef23-42ba-4324-942c-771c19190b59", + "node-edge-point-uuid": "a6007200-0012-4bed-b0fa-c25b39506e71" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b15c7e77-5a8b-449f-b653-c684d5927ab9", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11131-O-DU-1113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3baaef23-42ba-4324-942c-771c19190b59", + "node-edge-point-uuid": "405986ff-82f7-4799-880d-9491886a3e9b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "4a40a4c0-7f4a-4b05-8925-b139a74c5b0b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fed499f8-93bf-4a37-ab86-1939a45a261c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111311-O-RU-11131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e81be51-414b-43a7-a40e-d75c43f1d73b", + "node-edge-point-uuid": "928e881d-cb61-40c8-b3e1-46b01ca3cc4b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f22a70fc-8cef-486f-b64c-59ca1cdc9be3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111312-O-RU-11131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "96297912-d740-47b0-906c-fc08a819f019", + "node-edge-point-uuid": "6ef477f4-9021-40f6-b4ff-499ee40adc18" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "de0d41ab-adf1-4edc-b884-3e1fd5a37030", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111313-O-RU-11131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f8ffb807-93d5-4899-a7d1-d23e3cceb922", + "node-edge-point-uuid": "080e722c-ea97-43e4-9a7b-268d02f95172" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f555ac9d-d382-4191-8a43-174226ce8956", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111314-O-RU-11131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "96be4b05-2fd1-4b11-9f0f-0eba75d6fc4e", + "node-edge-point-uuid": "fa0c5f50-1611-4563-b31c-0adbbf60f799" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0b98eb08-1506-4c5e-8ebb-ddc87ca00f77", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111315-O-RU-11131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "63934764-59f7-4668-8a7e-823e41554a33", + "node-edge-point-uuid": "1a37f8d8-206c-47ee-bb7f-fd8f945f7752" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "53d9e81e-29d4-401f-85a8-05c2b61a581e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111316-O-RU-11131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1dac8e7c-3803-4bc0-833a-5345b835feb2", + "node-edge-point-uuid": "a8662968-5d86-4f60-8711-755877e6d6c4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "dcaa781f-801a-4a9b-b202-a726ab2f68b1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111317-O-RU-11131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "285889fa-dcc1-4f13-b9b8-6765040df6c8", + "node-edge-point-uuid": "a4868366-9491-4562-9fcd-3c494afa6eea" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b98dc954-0d04-4b3c-be2d-dc398a9cfe71", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111318-O-RU-11131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "457d44b3-da9f-47b3-9216-be3480072e6d", + "node-edge-point-uuid": "777f96b4-d14a-43ac-badc-2dfab6300ab1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b9d57e3d-d875-4a75-980f-9004dbc5194b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111319-O-RU-11131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c35cbda-dc8f-44cf-b7f6-4ee6597de38c", + "node-edge-point-uuid": "26e21950-f9a8-4382-a8e3-edc5cb369629" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cdcece91-e26a-46e6-840f-31f5fc9fcf7c", + "node-edge-point-uuid": "5bfc95cd-6036-4b51-92d0-78a9f32aaafa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ebe9406d-ab33-4050-bc87-ed1fa744f5d0", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11132-O-DU-1113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3baaef23-42ba-4324-942c-771c19190b59", + "node-edge-point-uuid": "405986ff-82f7-4799-880d-9491886a3e9b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "1ee11a60-c22c-4c29-b680-a1b16e7a4eea" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6b5540b9-8c7b-453c-bd65-3b5649cc25af", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111321-O-RU-11132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3065a927-6b18-4ae4-a9f8-d4ab28e1edae", + "node-edge-point-uuid": "7f9c47d3-aaf9-4f5f-a690-45bbc46c4126" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2235fae5-4bfa-49a1-8b4b-d6d4fd03819a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111322-O-RU-11132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5fab353a-20ef-4339-ae78-45edbeddb481", + "node-edge-point-uuid": "25232d12-390f-4403-a9f6-5495e11d635e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "93e7537f-1106-4cb5-b4c7-00122bd28f62", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111323-O-RU-11132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6ca8b2f7-893a-48bd-beaf-6971256026fa", + "node-edge-point-uuid": "9c725368-34fb-4257-9536-7b563a9641d1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5d96e750-5511-4794-aecf-9d92aed84ce4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111324-O-RU-11132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e04fe904-5716-4807-a312-08b73d7ecec4", + "node-edge-point-uuid": "b8e226c0-cb50-4623-905e-325559de3f6c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6000fb7a-b08a-4db6-9f36-938253aa8152", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111325-O-RU-11132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "45b84a0b-ac88-4bb2-af9a-b157b6a258a2", + "node-edge-point-uuid": "d1568846-7e77-4e89-9d58-2135ac5000cc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e7fa68e5-2532-4ceb-a846-5410d3c03d0f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111326-O-RU-11132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cbcec596-e18d-4519-b564-709587dd5a7f", + "node-edge-point-uuid": "5843bf67-de5e-4899-8bb1-15c6b8499a7a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5ec2cd5c-828a-415d-b83d-93e41a0a17d2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111327-O-RU-11132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d0230f40-8c9f-4028-9889-ff326a6b63a9", + "node-edge-point-uuid": "f4a53bf8-5277-4b64-bbf8-fb0abb3955e3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "18b52956-58b4-4b19-bfea-8ea3684728e5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111328-O-RU-11132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "78b24f81-ecbb-4507-98bf-663b594d92d1", + "node-edge-point-uuid": "a2f9fa99-c8e5-435d-b45c-d9c923757922" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "60f62974-17e2-47e9-b75f-ea6f55e9468a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111329-O-RU-11132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4fa848d-acd2-4e63-8219-eeeeb74a558d", + "node-edge-point-uuid": "eec82986-2ea5-40fc-a1b8-9dfb98e13f4a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b689aa8e-564c-456f-ab8e-ad57a573f595", + "node-edge-point-uuid": "221e49bc-3107-49c7-8b75-c1dac74388d2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4df9875a-7f45-47d3-9ff5-8baba129fd2c", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11133-O-DU-1113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3baaef23-42ba-4324-942c-771c19190b59", + "node-edge-point-uuid": "405986ff-82f7-4799-880d-9491886a3e9b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "8574e8b4-216f-423d-9658-c1bf3dfbd7d1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c7765f4e-5678-44a1-9e53-382911485fec", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111331-O-RU-11133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "add622ea-e878-4908-a30e-4b7f6f43096c", + "node-edge-point-uuid": "2ae70964-6f51-4afa-9514-3e13348b9d7b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "af7fa848-db3c-4389-a595-bbb7f591b49f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111332-O-RU-11133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2822fa9-d0ce-470e-8c6a-30e4ea86f5d0", + "node-edge-point-uuid": "f56d3497-d225-4a0f-addd-3fcd818b8bbf" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a7e377d9-5a89-425b-9dc6-ba58ac4c93ac", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111333-O-RU-11133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "859a1690-c10f-406a-b3de-ced8b50c2e95", + "node-edge-point-uuid": "9054f662-c998-4638-86db-f3f085c467bd" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9c5d90dd-cb5d-4b0a-b151-610f740e26e4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111334-O-RU-11133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d001c4c0-bf20-4619-975d-ab830831dc97", + "node-edge-point-uuid": "2e9e7be3-7b18-4820-b50c-4b99e85a4853" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9b2e229-f422-449b-a2fe-c6610db1ddbd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111335-O-RU-11133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffef98fc-1277-463c-a4c8-6fffaae428bb", + "node-edge-point-uuid": "1f815d11-7102-4bd8-bfec-d9fd5f30ccc9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0d1c5ddd-31c5-44f5-bb30-25a5d98998ce", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111336-O-RU-11133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8fe4063-fa05-4efb-ab6c-e81202e6768f", + "node-edge-point-uuid": "9b1aca5a-75e7-4337-a38d-00333d900177" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "854efcd4-c155-4661-b378-d6f6a34dc1eb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111337-O-RU-11133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "698d9d53-9ac3-4e5f-b2b8-9ca1043e3d4e", + "node-edge-point-uuid": "fb63ab91-91ca-4ea8-a3ef-d5ae2cd6a25d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3a1bce67-5d59-4d80-95ff-3971efc1a1c5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111338-O-RU-11133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fe25573-5b3e-48f9-a9fb-ce833092dd3c", + "node-edge-point-uuid": "bb33d09e-c4c7-4fbd-8f7e-56f86ee53ec2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ef36b876-a072-4313-b83d-422071398691", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111339-O-RU-11133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afffc28b-a691-43cb-a50e-77e1bffe094b", + "node-edge-point-uuid": "133885bb-c1cb-468c-aa9f-d2b04c104227" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bdab4f44-1c45-408b-8bcc-f638a116f942", + "node-edge-point-uuid": "eba9d360-e7d9-43e9-bcae-b958dc5073d5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b9a62368-aa69-411e-ac75-dee86828db5d", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11134-O-DU-1113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3baaef23-42ba-4324-942c-771c19190b59", + "node-edge-point-uuid": "405986ff-82f7-4799-880d-9491886a3e9b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "f1281237-d236-42f0-a3f8-6098efa289d9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4082c183-229c-46ca-9781-341d0273176b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111341-O-RU-11134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "669b54c7-b688-4cb3-833c-8a6198cff961", + "node-edge-point-uuid": "45658693-cdb1-4d5e-baa3-657a08f9589b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "835d1786-71c6-4894-9654-fa89ef2edf0c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111342-O-RU-11134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "09433b1a-b9f5-44d7-accc-94914a279855", + "node-edge-point-uuid": "ad459c9b-ee47-45d1-9336-1d8066d4e9d5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ebdae205-f36a-4553-adef-2a85a3c59171", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111343-O-RU-11134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1802adb0-aa2a-4b53-a2b1-5bb324f13421", + "node-edge-point-uuid": "e6f37ebb-760e-4a18-a994-a0ad0560241b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e9a12066-9282-4e8b-a8e4-2e4ce27b3c0e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111344-O-RU-11134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8af42bcf-584a-4e1a-a2d7-03d2a16a00d7", + "node-edge-point-uuid": "4f3ccf37-5394-4b1f-954d-75a612c9cbc5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b98713db-7d2e-4561-b079-35263606cfd3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111345-O-RU-11134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc5aa763-a10d-4602-995d-1cf922741a01", + "node-edge-point-uuid": "3e8d42c8-f7e5-4357-bca5-73a6525ccb11" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fe2ba91b-c242-4a30-92ea-e118b6cdafa2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111346-O-RU-11134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8de1c58b-8caf-473f-b508-9b62efc3453b", + "node-edge-point-uuid": "7c03442f-c27b-4446-8a0d-777b8b591880" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e83e99f6-876f-4557-888d-fb1117322366", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111347-O-RU-11134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "44b2827f-cc49-4835-9a27-3bbe683134f9", + "node-edge-point-uuid": "1c770821-2798-4fe8-aa9d-ca4787e241c3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0f05e0e8-2448-48b3-99a1-413d4a4d6aa3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111348-O-RU-11134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7e04d95e-941e-4c31-a9d3-67c3129f1a18", + "node-edge-point-uuid": "ef271184-de07-4025-affe-0c4be08426bc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0cc073ce-a8a3-4f23-88b6-f79da876f4d9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-111349-O-RU-11134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5e3c65d-fd77-4894-aac5-85af7858dfd4", + "node-edge-point-uuid": "2d64ebae-4736-4ed5-ac6c-60050b572769" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75b6c4d6-4e66-4f89-a736-2a33deff70a0", + "node-edge-point-uuid": "4cfd5a6c-526f-42b5-9876-b6ec74e931e4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "48facf5f-6481-45ce-a807-ab5490309e94", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-CU-UP-112-NEAR-RT-RIC-11" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dc0174-0ad2-4735-9073-bf91cb514cd8", + "node-edge-point-uuid": "6d4937c0-34c5-44dc-bb81-324edccbaec7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "47aeebea-7de4-4119-9194-b95258797508", + "node-edge-point-uuid": "1b8c70a0-8e7e-4e97-b2c7-9b87bf690622" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cc97c2cc-21e1-4cea-a851-ee7b519202d2", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1121-O-CU-UP-112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "47aeebea-7de4-4119-9194-b95258797508", + "node-edge-point-uuid": "7a4e7203-17ab-4f2f-ba43-c1b91959f255" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "954285fc-e328-4e68-8d9f-24bfbcd5b14c", + "node-edge-point-uuid": "287d983a-4cba-4980-8eab-c9c794ef76e3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7c93c63f-69c3-4fcd-bcd3-2f443d2783ef", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11211-O-DU-1121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "954285fc-e328-4e68-8d9f-24bfbcd5b14c", + "node-edge-point-uuid": "cb00353c-abf3-4aab-bc50-342542554fea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "540ddc2e-de9d-4b6f-9dbe-ba924eefb90e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c96b234d-72de-4446-b7b0-db25f19652bd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112111-O-RU-11211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a0d5f8a9-a450-4d3e-9ced-4fc2e292c0cc", + "node-edge-point-uuid": "ec2cc46a-110a-4e16-8891-cd2d93bebe7c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "614d4753-140d-470e-acf8-5b74ebc67e69", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112112-O-RU-11211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ee7f10c1-1906-46b6-80e9-827fb3c9375d", + "node-edge-point-uuid": "7e394901-8e43-49a7-ac1d-14725f1b3532" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "71e07b62-ac21-4eda-9ef0-90ba2e7eeabe", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112113-O-RU-11211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dd9bad7f-06e6-4305-8601-799c5f9bf5e9", + "node-edge-point-uuid": "c8bbd649-8d02-4e2b-87a0-38de524150d2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ab8d431f-bbb9-4086-9a12-3d760057d54d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112114-O-RU-11211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bb637622-605a-4693-ba95-1812c4db35eb", + "node-edge-point-uuid": "f3c92575-25a3-482e-8a51-91feb601425f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bae47ead-1687-44b1-b697-d2fee700e628", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112115-O-RU-11211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6b4baa52-2d5f-4ea5-bb13-d6009b53dd20", + "node-edge-point-uuid": "cd01bc18-075f-4eb7-a483-fddf15bf4673" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "eeb4a0ad-cb44-4e8a-95b7-112ae6d95450", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112116-O-RU-11211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1878f358-dd39-458b-b8dc-571b4d72e0de", + "node-edge-point-uuid": "05499553-3b6e-43fa-b268-8865d4ba010c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4366a559-721d-4efa-af6c-a313310ae500", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112117-O-RU-11211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "68713d55-1194-4505-8d06-9b5d61858459", + "node-edge-point-uuid": "031629d7-caea-4195-8d39-23ea40c0b409" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fa3d838d-3ed5-4d0f-ad3a-fdc716c4c9f4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112118-O-RU-11211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "28fe4699-00de-496f-8808-645442c26ae1", + "node-edge-point-uuid": "71945874-5d9b-463c-b144-34c945f53524" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f95935de-597e-4642-afd5-0b95733e44ea", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112119-O-RU-11211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2daba51d-0c7f-45a3-b4b8-1ee0f6c1f4e3", + "node-edge-point-uuid": "ad1e22ef-c220-4d8d-805c-7dc51ce79a6a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70cbd73e-88dc-42b4-a81e-5b9ce4fab568", + "node-edge-point-uuid": "679c8fbf-9c5f-4308-b8f7-b4a38b3a5971" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "330aff2e-1c58-44ba-b49d-bf07c689372c", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11212-O-DU-1121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "954285fc-e328-4e68-8d9f-24bfbcd5b14c", + "node-edge-point-uuid": "cb00353c-abf3-4aab-bc50-342542554fea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "ee2d7f33-0f6c-433c-8107-7a9f7e14f097" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bf860124-1eee-4685-8fa6-f763d1854889", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112121-O-RU-11212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "761a6cef-9fde-474a-b9b3-b2291afd1a4c", + "node-edge-point-uuid": "6302e0b4-5cb3-4c8f-a85f-41bb7ef791e6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "77a7c2d0-873c-49f2-8e55-a7f05b840c7d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112122-O-RU-11212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e01a38-045b-4c92-aa35-81905fe7a493", + "node-edge-point-uuid": "7d4c72c2-aa9c-4e83-acc2-3e300fcc516d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "24227dc1-0c5b-4364-b3d3-4688991d0f40", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112123-O-RU-11212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "51e55e78-6162-4a36-9bc5-c47875e36833", + "node-edge-point-uuid": "01509186-d556-4d39-b58f-13fd42c14769" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "185e30a0-8b12-4f55-97a5-87f54f7bf1a2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112124-O-RU-11212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d238f334-9f26-492d-85d8-1188bb91215b", + "node-edge-point-uuid": "dd5459af-7f7d-4ff9-b76d-af6517a60022" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3df72df0-59c5-4c04-a35e-855020c737ea", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112125-O-RU-11212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66c25780-7599-4752-925f-74b2e6970f75", + "node-edge-point-uuid": "90073551-8454-49f7-8166-439bf1871a4a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "33859de5-a0c0-477c-8f0a-f514911a0e82", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112126-O-RU-11212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "33b4c432-eb53-498d-9697-9812fecf07d1", + "node-edge-point-uuid": "35bd0b37-ca2c-46f5-b2b2-1a3fd7ce3b18" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "78c0a0a0-bc58-4938-a5d1-1fd6bd301cb3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112127-O-RU-11212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c346dea0-c2ce-47a3-97d0-4ade56683f59", + "node-edge-point-uuid": "e9b9d184-9b8e-4484-a56d-be6947922bf3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "abf139f8-b1eb-400d-8717-36e78a185b2c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112128-O-RU-11212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c1770088-7e96-4c85-9f57-cbf0854c560c", + "node-edge-point-uuid": "cbba9eea-4c2c-4697-8126-e765340a521a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9ce48378-338e-4e5d-be55-afff18bc88bb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112129-O-RU-11212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11b74d6f-76ca-4ce7-8124-1747167c11e0", + "node-edge-point-uuid": "abe20cca-8f0d-4581-97f1-d3be9665c6aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "96f00ed0-9570-4208-8be4-56c1bd9ccca9", + "node-edge-point-uuid": "57f22d31-4cd3-46ce-8159-a293dd5d219b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "daf7a093-85af-4c08-81c4-4f19e59ce196", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11213-O-DU-1121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "954285fc-e328-4e68-8d9f-24bfbcd5b14c", + "node-edge-point-uuid": "cb00353c-abf3-4aab-bc50-342542554fea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "be99628b-9b51-46e0-9b4b-daa17a8beab6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1c807279-00b5-424c-97b5-c8132fdf21b2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112131-O-RU-11213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7d49ffdb-2a08-4c08-b2e7-235e71bcaa06", + "node-edge-point-uuid": "3cf5481a-0b67-4750-9bf3-b75dcef00451" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b508a1a9-a27e-4511-9451-ee0708dcec1e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112132-O-RU-11213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9ce415e8-2d78-4bf7-add9-03f54be1afc9", + "node-edge-point-uuid": "bd0016ea-99c9-45e6-84c5-c0e071dda1c1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5d4b1900-e890-4a09-b0b2-1f34d4966c14", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112133-O-RU-11213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "24a7ea8d-57e0-4df2-922e-e0930cce7277", + "node-edge-point-uuid": "7e12ef00-7b3f-44bd-b751-cb1762a9b656" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a177e8a2-b348-4ebf-8649-881fc70696cd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112134-O-RU-11213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4038cc7b-6c91-441f-895b-85eb23e87a98", + "node-edge-point-uuid": "ad1c8777-6468-4fc1-b851-a935b8951f09" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "61715003-90a1-4027-8fa9-648197683708", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112135-O-RU-11213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0c6d78aa-168c-4e3e-9cd8-7323df55bfcb", + "node-edge-point-uuid": "62dda12f-1da7-491d-b308-07aeee36d779" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8922924a-b4d9-4e65-9238-202f12b54c18", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112136-O-RU-11213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0ae7955c-e1e2-4802-bce0-85ee1a3c993d", + "node-edge-point-uuid": "008bea6a-48be-4eac-93b0-8402f299a43f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5e8bcd2a-42d9-401b-8fec-03ce4b32067a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112137-O-RU-11213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "76b58c7d-e1f5-4c90-9490-6827f9437dd1", + "node-edge-point-uuid": "4b05c0e5-faf5-4aa5-b5ab-e9e9ee55172d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a31a3bd3-a580-4a76-b890-e3e677725347", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112138-O-RU-11213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8cbb6dd-b27c-462e-a712-c0294d21db98", + "node-edge-point-uuid": "fda2a800-5d6e-4d8a-ab8e-930a2c6637a4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "79a99aea-8504-4e89-b2fe-d01db71410c0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112139-O-RU-11213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "81db9ae7-315f-43bf-b325-c55994cb2700", + "node-edge-point-uuid": "79004f07-d30b-442f-84f2-c0a0c923ddee" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "846ce519-2673-4d55-8bc6-9aed6dc92d8f", + "node-edge-point-uuid": "9a9e751c-230c-43ea-a55f-ca41b7e8c963" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "08d71a37-b527-4db9-be68-dadd66373e8b", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11214-O-DU-1121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "954285fc-e328-4e68-8d9f-24bfbcd5b14c", + "node-edge-point-uuid": "cb00353c-abf3-4aab-bc50-342542554fea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "86a86873-3966-437e-a211-4bd259dfd659" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6f86ba03-8827-4223-bf86-eb4208a4b395", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112141-O-RU-11214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a0c41733-318b-458c-8444-55e8fe0223fd", + "node-edge-point-uuid": "aa404417-c918-4844-a0ba-0403439a68b3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a2779d6a-e80b-4137-8cb8-95c18d5334ac", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112142-O-RU-11214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2240a4db-1fa6-4430-b192-507d2ef99e7f", + "node-edge-point-uuid": "1bacc9e7-141c-44d7-a4b1-fcb903a49193" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cc015fa4-6c08-4aff-bc8c-c8ee19811fb0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112143-O-RU-11214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79d988c0-1d8c-4e08-99db-5f16c7c5e0c0", + "node-edge-point-uuid": "7ca75349-dcb3-46a0-9062-efde145f6d03" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8969df9e-b564-44a2-8578-5c755cda4648", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112144-O-RU-11214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "82abc20c-16df-480d-a38c-bee45b5a2bd8", + "node-edge-point-uuid": "2a3deefa-4196-44bf-8207-75db42b817cc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1ef2af6f-caac-4a5d-a3e5-0a27f803676f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112145-O-RU-11214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "acbb8388-c07d-4d2a-b5cc-33eecd7b3f4a", + "node-edge-point-uuid": "eec3aca8-2ef8-4096-8599-0480d8509f2a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "395a0a3d-8d38-429b-9ba9-3dde860ea412", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112146-O-RU-11214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0186ecb7-66fa-4d49-ad98-3c943af531d5", + "node-edge-point-uuid": "eec44922-8e13-413c-bc66-61a8c9934132" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1de8bcde-8779-4099-abae-65c46b79da90", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112147-O-RU-11214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d89395c3-e3cb-422c-8046-2684e6ab03d2", + "node-edge-point-uuid": "222add09-5703-44de-aba2-266c04ccdf1e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "23ce04de-9f0e-4b80-9613-7c1873ed0b63", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112148-O-RU-11214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a09a47bb-bbe1-4076-bc5f-a4bacf071142", + "node-edge-point-uuid": "78dd4fca-57e7-4810-a71b-310e852ec561" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cd0982cf-f1e8-414d-b10d-8436bdbf28fe", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112149-O-RU-11214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8285eafa-beb8-4f14-b04e-998f3b05dcef", + "node-edge-point-uuid": "c80644eb-0064-49e0-99ca-28b9f19778e8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "693c94dd-0959-4d57-8f71-d55868aaf3f5", + "node-edge-point-uuid": "78f29375-b02a-42f4-82d0-5e1321c993ea" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "34f7789f-8348-444e-81ca-79dcdf62cde2", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1122-O-CU-UP-112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "47aeebea-7de4-4119-9194-b95258797508", + "node-edge-point-uuid": "7a4e7203-17ab-4f2f-ba43-c1b91959f255" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3f54a6e9-27e8-47a3-9185-8dc56ac9653c", + "node-edge-point-uuid": "d149cb2a-d3b4-43f7-8cb4-7507df1a9daf" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "778667ae-8f45-4298-84e2-2dc2a5b25632", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11221-O-DU-1122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3f54a6e9-27e8-47a3-9185-8dc56ac9653c", + "node-edge-point-uuid": "89800111-66e2-454d-8dd9-800da30a4497" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "a4e854a0-c9bb-442e-89f8-2eff839bf23f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "42ee6d71-c63f-44d5-b740-57aca44272c0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112211-O-RU-11221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e869eb1b-8895-40b9-b81c-60f16a6468c9", + "node-edge-point-uuid": "4e4dec12-fe0c-4385-a5f8-4740f53f01da" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a0f7fe9d-2de8-46d2-9991-b8b9d6201e00", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112212-O-RU-11221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0deb0e3d-0590-4a4a-a9aa-0545bfd42e2e", + "node-edge-point-uuid": "e6eb414e-e308-4ddd-8e56-89b81012016a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ea818ab3-42f7-4229-a3da-fb254fb973e2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112213-O-RU-11221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3efab6e1-ba90-4b31-a7ba-9eca6e629a88", + "node-edge-point-uuid": "95d022fd-a486-40ac-9468-4ba6ee9d7daa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "99beb954-33f8-4572-aeea-a6396548b5de", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112214-O-RU-11221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a3fb4dd-440e-4852-ac56-8fbf3283bb51", + "node-edge-point-uuid": "d7ae6cf4-1e44-4de4-879a-7496b1c60e3e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b2d67dd4-da35-444e-886c-a7bdcc610341", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112215-O-RU-11221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c91f27fe-0c91-4fec-a836-91daa2f7284b", + "node-edge-point-uuid": "b775883b-d7bd-4efd-a595-a3021a8d401d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "df479727-f94f-4714-86f7-a05271304c38", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112216-O-RU-11221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f52b225c-9d14-42ae-bc6d-572285befb30", + "node-edge-point-uuid": "39b9d474-1617-4306-b1c2-296077db83a2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c3ba411d-8af4-4a4f-98e9-e7ddcf28742d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112217-O-RU-11221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8c11734c-1c84-45c6-a1ec-0da0a9efed89", + "node-edge-point-uuid": "b4a38bf7-e607-496d-abde-ac1b88f9351a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ef8539fa-aee0-4aed-bfa3-6502d62de98b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112218-O-RU-11221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d24fa288-8724-450d-9b82-140e22e8ea04", + "node-edge-point-uuid": "bfa74063-aa2e-4173-967d-d7c44ac4fd0f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "da85bde2-cd01-4ca3-bbcd-18d88a03644e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112219-O-RU-11221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc152039-7578-49bc-9f86-a2de926b795c", + "node-edge-point-uuid": "1079c43d-1cba-4a4f-9e3a-7c74a0f3c882" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "28d89fea-bd00-48ab-a20c-1edd1f404489", + "node-edge-point-uuid": "a668f374-e2b2-4ef3-bb94-e0b56da9d9a8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ce34a328-777b-42f3-b636-f8900616d54b", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11222-O-DU-1122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3f54a6e9-27e8-47a3-9185-8dc56ac9653c", + "node-edge-point-uuid": "89800111-66e2-454d-8dd9-800da30a4497" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "f6c95752-8152-4f42-993e-c2a97d53215d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a89c5207-3a49-4ea7-88d4-2701d18fc674", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112221-O-RU-11222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0536764a-5319-4005-bf8c-ff970e47d2fd", + "node-edge-point-uuid": "810d0a28-ee49-4a50-ab2d-53ed85add2d4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6ca1069b-2b79-4f76-a8b1-073426bc1d1c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112222-O-RU-11222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3875c113-336a-4104-bf69-0ab873940d01", + "node-edge-point-uuid": "e61e73bf-b9fc-42d1-8af5-656b386990f3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "213e0ae1-faed-4b11-9e54-e99604670d2b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112223-O-RU-11222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "82e34005-bfd3-4e5a-93ca-210e1aaeb41b", + "node-edge-point-uuid": "c6c3d674-dbac-4924-9bb4-2c5fa101ba9d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "146b4948-eec7-4a43-9b02-1794992573fa", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112224-O-RU-11222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dd4c9acd-0584-4760-899a-dc5c5cf931e8", + "node-edge-point-uuid": "d4e76098-abfc-4bb0-911c-19c61ce94f71" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5dfe7d52-b684-46a0-a630-309ba66087ee", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112225-O-RU-11222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dfd43d57-ab29-4aa7-87a5-04bcdf14d0e2", + "node-edge-point-uuid": "374e2830-3550-48ec-83d9-475dfa170083" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "af41845f-cd27-4cce-8a33-2228aa8e1487", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112226-O-RU-11222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0199874b-8d11-4940-b837-d6aeefc0ff0d", + "node-edge-point-uuid": "0795c2a5-7e40-4362-9642-8d76c5eebbf9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b9b8ad26-d183-4e18-9390-d3ff02e0412c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112227-O-RU-11222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cf0fef4b-4a91-4853-a0ca-8271654baf44", + "node-edge-point-uuid": "d2a923b9-47bc-4d0c-99bd-e9b465a2f118" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9e6bc34d-5426-4c80-9a36-f9af1c0a8c03", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112228-O-RU-11222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b042c3e7-0494-4359-83fb-b7600aadbc4f", + "node-edge-point-uuid": "684581b3-9946-45ce-a051-23b1a7308b9b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c52468f3-d704-4a65-b356-c9255cc97260", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112229-O-RU-11222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ffff5ea7-6791-485c-a33f-d1735b05dfa4", + "node-edge-point-uuid": "95b2c2d8-c49b-485b-afed-cc8006b889b1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "96410ef7-49e5-4769-8d7c-5997f42570ab", + "node-edge-point-uuid": "86b730a3-0137-459c-9573-2751dc14553a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2713039c-848c-4e88-ae8a-58797ca9f545", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11223-O-DU-1122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3f54a6e9-27e8-47a3-9185-8dc56ac9653c", + "node-edge-point-uuid": "89800111-66e2-454d-8dd9-800da30a4497" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "7f29ca22-04a1-4046-8f3e-9b45b98bce8d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3835d9e0-5cc3-4446-a325-38527c540c5f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112231-O-RU-11223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d376419b-2ba3-4b39-b79d-1896a78d69ba", + "node-edge-point-uuid": "18ad2662-bc6a-462c-87ab-b02a192cc68d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6b828595-6996-443f-bd56-169761767759", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112232-O-RU-11223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f42300ef-2644-4fa6-9b19-425eae817b72", + "node-edge-point-uuid": "58997b6f-e5d3-41ee-8d6c-7997962a9fa7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b8434885-8793-4093-89d8-b125375682e2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112233-O-RU-11223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8b6a0fe-c5de-490a-8ff9-938053045fe9", + "node-edge-point-uuid": "b5f9d086-56a8-4a70-89c5-60c6906e4dd4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d86841f7-94a0-4c89-89d3-96edaa48e7c4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112234-O-RU-11223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0b1d720d-e205-4654-853c-f1b0b87e2e95", + "node-edge-point-uuid": "98ad2509-bda8-4b6b-ad49-e34b9d2f8350" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d0ea902a-9fcc-4873-8e57-ee48a0aac45b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112235-O-RU-11223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "07de7f79-4872-4ebf-aa65-4271758e3dcd", + "node-edge-point-uuid": "5de188af-b7f1-4f7c-9d2c-0b0e4a7e3777" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d542b6a6-7448-4b96-9133-32b819085e07", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112236-O-RU-11223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c9cb1da3-7d27-4894-9441-e3e514997d7a", + "node-edge-point-uuid": "35eede29-8b4a-43aa-baa1-302d05531dd4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d6262429-ad80-4ab7-aba8-9225dd1ff287", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112237-O-RU-11223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "37e8f9ce-f064-48f3-9417-eb691c483b28", + "node-edge-point-uuid": "256f1eb9-19be-4ee3-8fc5-b5718fcb9c3b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "52a298b2-6808-4cde-8a15-4b561813a06d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112238-O-RU-11223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b9d7ca0-8a4c-413b-9d94-46701be5b29b", + "node-edge-point-uuid": "4fdb7cba-9bac-44b3-bd7a-435424c737a8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "857c15b2-1f5c-4ea7-98bd-33bbc871bb1d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112239-O-RU-11223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beafdfcf-1efd-4746-89de-371c294f2531", + "node-edge-point-uuid": "1f08fa1b-2559-4f33-9d9e-9449089d7d23" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "acbfbb12-ca1a-4c39-ba60-b40a6b4d5ab8", + "node-edge-point-uuid": "9fee7a26-a6a5-4ad1-ade2-f10e69a5f426" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "45688669-7147-4906-8bde-36def51a7159", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11224-O-DU-1122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3f54a6e9-27e8-47a3-9185-8dc56ac9653c", + "node-edge-point-uuid": "89800111-66e2-454d-8dd9-800da30a4497" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "c6fcbfe5-4c49-4872-bb34-a364b4264ea8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f00abf60-01cf-413a-8b75-c8b9eb62fccf", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112241-O-RU-11224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5a47ba6-bd16-401a-a8fd-4f0245cd48be", + "node-edge-point-uuid": "64b2d7b8-2a62-4785-8e55-92007078bceb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f8139dfe-67c0-4731-9b5a-1f68f05758f3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112242-O-RU-11224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cd6c80c3-e1a9-4656-8a5c-561bb5c2cdf5", + "node-edge-point-uuid": "8679ee23-01aa-48a7-92ed-7fa33666e256" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "308aa03d-20ef-48ad-8668-eb0fb4243596", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112243-O-RU-11224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "111acfa9-d3b2-4573-a42c-8c4a346b3f6a", + "node-edge-point-uuid": "78b1b55e-9461-4a58-8cfa-40bc02603ea8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "17bda46e-0d31-422e-b6b2-d2dd3eebec52", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112244-O-RU-11224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "65ea2151-573e-49f5-80b0-fea725989604", + "node-edge-point-uuid": "28b22a55-879f-4fab-968c-d2311a39f40b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "95902f58-cb60-49a4-bd13-5b73df015555", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112245-O-RU-11224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b3a4b865-1fa9-4552-a88c-02badcadae50", + "node-edge-point-uuid": "a4fa1f23-f8d9-4aa7-a6ed-5557fb892e2d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4d0f7579-67a1-461c-b350-471dafd9acb6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112246-O-RU-11224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ea08ed7-b6f6-45c2-936a-0e65d762bc7a", + "node-edge-point-uuid": "023f5fcc-8b66-4ea7-aa68-785facf3daa0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5ed41a4a-7ced-4bca-bc34-06e24bb0565c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112247-O-RU-11224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "98154645-1d16-4c31-8fd8-4b2a8761c7e9", + "node-edge-point-uuid": "806a65f7-2faa-4382-83d4-2b78e2a35b70" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6e11165a-029e-4962-bfdd-c20ea0cae416", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112248-O-RU-11224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7790391a-82b1-4d8a-a58b-a35281622eeb", + "node-edge-point-uuid": "733e295d-2bfa-4aa5-bb26-0614e04ec40f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5a293f94-8217-4f7b-82b0-d8acc7d203d1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112249-O-RU-11224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e183570c-4d9a-4437-8d1d-12bda9b67f61", + "node-edge-point-uuid": "75f5300d-058e-4fdf-9d10-755491d25ed1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abc47a3a-31e6-4fc6-aa28-b8556aa0be83", + "node-edge-point-uuid": "d709837b-57b0-4f99-b551-6d759369002a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d3a07177-dccd-4738-8adb-aec551cf2c9e", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1123-O-CU-UP-112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "47aeebea-7de4-4119-9194-b95258797508", + "node-edge-point-uuid": "7a4e7203-17ab-4f2f-ba43-c1b91959f255" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e16ea90d-7b26-43d6-acdc-eb3bff54b611", + "node-edge-point-uuid": "111cf35d-74d9-44b8-b971-4f526f9c0563" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "34b68db8-a485-491f-80e3-f93c18bb3041", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11231-O-DU-1123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e16ea90d-7b26-43d6-acdc-eb3bff54b611", + "node-edge-point-uuid": "faeceb73-24ca-4be9-9343-c4127a454359" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "a916abd0-e95f-4bbc-8fb1-8414eba0b63c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8397e1ae-fbdf-4712-acea-6fe744bb9742", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112311-O-RU-11231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c520b5f-5800-4b75-9a4a-d61f26a83157", + "node-edge-point-uuid": "e506d681-2366-4498-9e30-ca43cfcc7b5d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8af0659d-80f5-45ba-9ab5-45556c29d615", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112312-O-RU-11231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "47757693-a792-451c-9604-9f41ad778c46", + "node-edge-point-uuid": "b09b8636-14a6-46d2-a87a-8ccca5aa4951" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5336e58d-372d-48d6-bada-ea689bd6a245", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112313-O-RU-11231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "501660db-c955-4dfc-aae3-29ae31d175e8", + "node-edge-point-uuid": "9d6b713a-e198-4a17-9e79-eeb198e967b8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "df940129-486b-4c85-8d0d-593511616944", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112314-O-RU-11231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d870865f-b8a1-4032-b031-15d6bd436246", + "node-edge-point-uuid": "44dc7192-bbe3-4fc5-b335-3d1ab9611ec0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c02df7dd-c49f-4269-a471-3cd8ceafa088", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112315-O-RU-11231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "37ebb3c9-d54e-450c-a941-f70a3edc3a1f", + "node-edge-point-uuid": "e36ea42a-741b-4828-81c8-2842e696f1aa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9c0b6f01-73b2-4b6a-b9e9-28a27c2d0364", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112316-O-RU-11231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "68544429-9fca-49c2-af58-326070016b2b", + "node-edge-point-uuid": "212421d8-cb8f-44cc-8150-9505476d99fb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "40758967-2129-41c5-bc59-f9b783a351a4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112317-O-RU-11231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d1406b7a-1bb0-4d18-a5a7-0dd1b8307490", + "node-edge-point-uuid": "72fd61b3-a0e9-4f17-82ab-e108254c887e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fb76af3d-b6bd-4ff2-8f83-7552e740b025", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112318-O-RU-11231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "37496e66-4b66-44b2-bed3-ea50696c3a9e", + "node-edge-point-uuid": "86d643ca-00d0-4dc8-a85e-d19c3696d54f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ba08e634-e249-47b7-99af-9fd245b8238a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112319-O-RU-11231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "344d613c-594c-46c0-aecd-21186438fc39", + "node-edge-point-uuid": "9b1677ab-8167-49a4-ab91-a2634a398c8a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "edec476b-d32a-41c7-b4f3-82684b587979", + "node-edge-point-uuid": "572fe831-12fb-4a25-914a-b993be62c1ff" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f6eb35a7-7d00-4268-bdf9-6263bb8263a9", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11232-O-DU-1123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e16ea90d-7b26-43d6-acdc-eb3bff54b611", + "node-edge-point-uuid": "faeceb73-24ca-4be9-9343-c4127a454359" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "112861ed-318e-4e43-958d-25fa8bd98491" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9ef08e66-f8b7-47b7-8062-de83f7afe669", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112321-O-RU-11232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "64f0e218-e532-4e58-8c38-3a170e174aa4", + "node-edge-point-uuid": "21ee007a-8e2f-4638-8d2d-720c0156694e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e05b6b90-7e03-48d7-9121-5a8c739a7447", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112322-O-RU-11232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0b86cc98-c489-49cf-a2da-ebbcc6d23bd5", + "node-edge-point-uuid": "61114f6d-e7cb-44c7-af73-1d4135025d00" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "aed80d8f-e770-43fb-8584-ce1d7374ba51", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112323-O-RU-11232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8c45cdd3-41d1-4139-8452-569c837b68ba", + "node-edge-point-uuid": "f47767dd-b78b-4e2a-b740-f640840dffe8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8fc3901b-00e8-4d75-ba41-c49a64abaedc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112324-O-RU-11232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "557fe04f-8339-485a-93ea-0c55c1c09a14", + "node-edge-point-uuid": "6c1ca46b-2122-4ef9-a0c5-8387e8c02dfa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f7ec745e-97ce-4e13-a390-b50978cc09a5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112325-O-RU-11232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cd250806-eecb-434c-be74-2962cde48cd3", + "node-edge-point-uuid": "d9d4f048-9ed4-41f1-b311-b93d8d4d11ea" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2e395d43-069c-4d2f-8940-6891966f6fa9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112326-O-RU-11232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "09752d93-52f4-4e3e-b84e-d52210673740", + "node-edge-point-uuid": "6c42bf4d-b17e-42de-b5b4-e9ecc0acbc35" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d6449a59-602a-498e-9cef-8746d340b44a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112327-O-RU-11232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99359fb6-3730-4a7d-98d8-41c48dc8cf04", + "node-edge-point-uuid": "c58b2fab-9059-4368-92d5-e842b092d58f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cc13f4f5-4897-46ed-b04a-f241d2570f80", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112328-O-RU-11232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "134bbb17-db4e-4da4-9388-c08f837fa3f8", + "node-edge-point-uuid": "37fee44e-de29-4e18-87a2-ba806e5f6c37" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0aa9be3b-9bfe-4438-a6fd-b0e6d9176546", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112329-O-RU-11232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4c3b78c7-7fb5-4541-add1-c268130760a0", + "node-edge-point-uuid": "23b62fd4-ad47-4c1f-bccc-bab3fd3338ec" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6fceeff-d36e-4318-9c84-82f7c6439865", + "node-edge-point-uuid": "79db82e2-d007-4263-a136-7b567f36286d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8860c0af-c656-4753-abb5-7e0464e3e6cd", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11233-O-DU-1123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e16ea90d-7b26-43d6-acdc-eb3bff54b611", + "node-edge-point-uuid": "faeceb73-24ca-4be9-9343-c4127a454359" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "c69d1672-2aa1-4f2d-87a7-33d45abf850f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "409f5f31-e1ae-497f-8ec8-414e85f927da", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112331-O-RU-11233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "52507987-4d65-43d7-9ccb-316e0e2d4d4d", + "node-edge-point-uuid": "5d194184-1381-488a-80a8-157248cb820c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "55fa861e-d730-444b-ae2a-4dcb07f2db77", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112332-O-RU-11233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b86a18b0-6e02-40a2-a550-d9314e204591", + "node-edge-point-uuid": "a1c7dcc6-3231-4712-b31a-e5c4d8d91dca" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b93775be-cb53-47f7-8073-d2a07df29d30", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112333-O-RU-11233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "901667bf-8890-4598-b0e0-4df3b0cc76c1", + "node-edge-point-uuid": "bba07cab-0cf9-4886-a69c-e2e66ee52696" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "53b7d263-7eec-4b9e-b931-e1380c343ba0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112334-O-RU-11233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e57fd86-e746-49bb-8d86-e918a5e43c2f", + "node-edge-point-uuid": "a307ba33-36c3-4686-8b8e-a8fc74356eb7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a4ac5098-b4b8-4f77-9b7e-cf7df9c4ec1e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112335-O-RU-11233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0a72ad68-d3cf-4fba-a410-95b0720b66e9", + "node-edge-point-uuid": "bd2950f8-b904-43d9-b10b-2c5a74c2ae32" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "88b9099d-ac07-4683-ada9-64ff6ebaf8b8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112336-O-RU-11233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc2e7c44-b13f-467f-8937-98a6132b0876", + "node-edge-point-uuid": "7a513094-b942-4054-87f6-4e532955a474" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "82b57a9b-9978-4d43-8d0c-c71d6a236cce", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112337-O-RU-11233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c64d731b-bcac-4d1c-894c-f88b38aa5032", + "node-edge-point-uuid": "7b8887db-ea46-484a-a0c5-df192bc8a2f4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c912fc10-ca1c-43c2-ab18-d508593e9146", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112338-O-RU-11233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a1f2d50-a4f8-407c-84c1-aa26361ef13e", + "node-edge-point-uuid": "088160b1-f187-44eb-93ff-e8a72f5c5f93" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7af19fc6-d0b7-4edc-a5c5-ac7c3d8b3525", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112339-O-RU-11233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8444ac35-80c1-4484-8c17-1f17aaf4ab13", + "node-edge-point-uuid": "ff886839-61cc-4a45-8195-9b42589e05ad" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9c3674ce-a771-4e9a-ac9c-0510fc254885", + "node-edge-point-uuid": "e4a090e5-d653-4531-a5a4-ab9f4b86a747" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "60726550-c723-40da-889f-295a3890507b", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-11234-O-DU-1123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e16ea90d-7b26-43d6-acdc-eb3bff54b611", + "node-edge-point-uuid": "faeceb73-24ca-4be9-9343-c4127a454359" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "305398a1-6ba5-4859-82e3-8b6ef3ab2674" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bf234add-11fc-4326-a11f-ccc5bdc5c749", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112341-O-RU-11234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2328e2e4-7fcb-4098-a8bc-287084403d6e", + "node-edge-point-uuid": "c4b84788-3a57-4e49-b5ee-e078c1f244be" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "990ca5eb-96dd-409f-bbe4-9ee399b97181", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112342-O-RU-11234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60dbb04f-34c4-42f0-830a-04a0513d9529", + "node-edge-point-uuid": "f7765e09-104d-4c12-ba52-4472b294030b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4ed7350a-831f-48e8-a332-1a1804b3961b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112343-O-RU-11234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e08189c6-cee0-4634-9114-6ca7ebf50f48", + "node-edge-point-uuid": "d99bd977-ce12-4719-8857-14ef4449656f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "52b221df-f34c-4a11-9652-7b5bff0f27f8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112344-O-RU-11234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e636f9c1-0a58-4d41-99d9-bbd962cb81f1", + "node-edge-point-uuid": "46f6c056-e607-48d6-a2c7-a77dd53d2912" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "274f584e-f5ca-4980-802b-4920350f98c3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112345-O-RU-11234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "56bd5ce8-b29b-496e-a7d5-c2aa9a4b9e0d", + "node-edge-point-uuid": "f09d081f-8dd6-477f-ae37-8160b8fc56a2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9940a0df-0ec0-486f-99e6-dac20e79c3a9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112346-O-RU-11234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1d33c967-2000-447a-b915-d17fc3b8e348", + "node-edge-point-uuid": "a4429718-3feb-459c-94b0-3ae363532e67" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ea61a28a-84b1-4315-938a-ad07a852e93a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112347-O-RU-11234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b9cdb90-f623-4da5-b0ca-d35101a80d23", + "node-edge-point-uuid": "556d61ee-192f-45b1-9fa7-835f16dfea0d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3ef0b9e3-2b82-437e-af5d-83ae5e159c68", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112348-O-RU-11234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5104e70b-cf98-443a-a333-2ad99605ab6f", + "node-edge-point-uuid": "4eef4bd6-cf96-47ac-9570-8e4d60d7315c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ce246c57-b4d3-4b46-8d6d-c9a97332370f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-112349-O-RU-11234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "639a8de6-fa46-4307-8fb7-57d3adf97ecd", + "node-edge-point-uuid": "cfe444e0-5572-41d4-b7f4-b5d4bb1597ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3652484e-c3d8-40cd-8632-f0addbcaa350", + "node-edge-point-uuid": "244b83ba-7ad5-42a1-beba-0ce4c1df9e80" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "51db3751-0e43-45e3-befe-db437a756557", + "name": [ + { + "value-name": "topology-link-name", + "value": "NEAR-RT-RIC-12-SMO-1" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f63fc9d3-a14b-4a68-9466-4300a5de692b", + "node-edge-point-uuid": "58b49d3d-46b0-4db0-b237-0f1f7fdeacf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fd10c0ed-a1b3-4c88-866b-c4e9ee7770b4", + "node-edge-point-uuid": "4a0eb0ff-6e32-4a79-9260-a5db5e58755c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "500b01fb-0a1b-4dc7-970e-63be0ec136cf", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-CU-UP-121-NEAR-RT-RIC-12" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fd10c0ed-a1b3-4c88-866b-c4e9ee7770b4", + "node-edge-point-uuid": "c7153482-ab6d-41d2-aa7d-e4a2ba8852aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ab004990-4583-4c83-9c54-33cef330f157", + "node-edge-point-uuid": "6b11b606-727c-4acc-9ae2-4b00df0bc8ce" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bf8afe6e-aacd-4387-8c23-b335bb7048bf", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1211-O-CU-UP-121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ab004990-4583-4c83-9c54-33cef330f157", + "node-edge-point-uuid": "072d4189-61f2-4902-8949-1901683a35ff" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e132f2b2-f9cd-4454-a4be-5e1fb4295945", + "node-edge-point-uuid": "307c9859-faf6-4016-8b5f-145b98b46ff5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "76ac5786-3a07-407e-83c7-af366c004202", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12111-O-DU-1211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e132f2b2-f9cd-4454-a4be-5e1fb4295945", + "node-edge-point-uuid": "de265ac8-e4d5-40bd-8a75-bd415c19c1ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "c980be17-c3f1-4669-af78-a8a880cf599b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1b07e165-72e6-47b0-9d4c-4a98aa624e6c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121111-O-RU-12111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "138a5448-6705-450a-bdf9-cf8a3a426622", + "node-edge-point-uuid": "d2d89fa1-3fc2-4edd-97b6-ef53f1b8747a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3f9eb4ba-d9cd-4470-bccf-d9975ce543f8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121112-O-RU-12111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f818ef81-563f-40be-b027-3e01ee6663f7", + "node-edge-point-uuid": "bd9409da-2c6e-49b1-a85e-5f36d432037a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d262c110-6abb-451a-960e-4f3f86b56642", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121113-O-RU-12111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7e3e75dd-a73b-44b8-8c1c-48897ce3adf0", + "node-edge-point-uuid": "d1cc9846-6ebf-4e1d-bc41-79c83c50ec7d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9f154de-6f5b-41f2-a02e-629a12ba6d8d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121114-O-RU-12111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1970d3c3-d106-4039-849c-29b373b9c393", + "node-edge-point-uuid": "6c40e253-b3b6-4138-ac3b-aedd5b335153" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7c4d6435-7053-40a7-844a-60a6bf1f83e4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121115-O-RU-12111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a96d015b-2d61-405a-8e38-19a9e3c3bbef", + "node-edge-point-uuid": "0445dc69-48b2-4067-a468-f264ac96c598" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bd94762c-0c71-4d15-b6f5-40eb88689f7b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121116-O-RU-12111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "12a43553-60ad-4c94-b517-bfa2a5cc6d2e", + "node-edge-point-uuid": "d4764160-f9ba-4c62-99c7-99f3b9e2dc28" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "887da04c-5d69-4905-8873-4f3f02b90b90", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121117-O-RU-12111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "633386a5-291d-4d58-a9dd-e0b8c4b77fef", + "node-edge-point-uuid": "ee90b25c-3d18-449e-9a6f-857a95bba722" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8a6c93e3-57b1-494b-99dd-f78d99e8d3ea", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121118-O-RU-12111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84948772-0a93-4397-9a05-732d7a1f15c8", + "node-edge-point-uuid": "a47fb127-aaf9-4854-aef4-626c5a9b431f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7e36ca28-4690-4edd-8176-aa77b61cd42d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121119-O-RU-12111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b8b70fd-a71d-4c15-be0e-9513264f48db", + "node-edge-point-uuid": "5e0f65ea-82e9-4360-b718-a2a6a1ffe0fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f8091766-af71-431b-9102-b05dcaf0e5a3", + "node-edge-point-uuid": "eb0e788c-3e3e-4206-8e17-f49b4906361b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "434f25ca-8631-4213-846b-92497c70232a", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12112-O-DU-1211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e132f2b2-f9cd-4454-a4be-5e1fb4295945", + "node-edge-point-uuid": "de265ac8-e4d5-40bd-8a75-bd415c19c1ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "4285e8fd-e564-4ecc-978b-3850f34961ed" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "568928d5-c7a1-4bef-984d-a73a2de362f9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121121-O-RU-12112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "40f6da77-d658-4e75-9271-0b39cfbd6518", + "node-edge-point-uuid": "f3212e91-2fc8-4969-9552-94b3c9df3bef" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d3d64438-0ff6-4880-a210-d468917fe7e1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121122-O-RU-12112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "89c6b7fb-39e3-4557-a423-d526449ae23b", + "node-edge-point-uuid": "86adb19f-6795-4ecd-91ad-4fb13e55b12c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7c6e3e30-6794-4001-a7fe-a036e1a0e42a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121123-O-RU-12112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c427e864-b783-4a89-9bee-e151b90c53de", + "node-edge-point-uuid": "bd37fc07-7f33-4410-b1fe-e08b8984faa7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b12cbfa0-e30d-4cd3-9fef-636bd735ef7c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121124-O-RU-12112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5c4894f5-25c1-443a-aebc-f928e4c0418d", + "node-edge-point-uuid": "f3af5900-9e6a-49d4-b488-dbdd9d6ebaa6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e8f51544-515f-4d44-a6e5-f346e1432a7b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121125-O-RU-12112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e860a374-2268-4aa8-9b07-9136fe2accf2", + "node-edge-point-uuid": "f6fecdc4-72e7-4b7b-96d3-b32a0e196782" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "64130329-1b03-4f97-825c-1e5d676a079b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121126-O-RU-12112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "501a852d-c39e-4243-a3f4-7b53b7542878", + "node-edge-point-uuid": "19430be5-b955-4fa7-b46c-c1140384fe8f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "740e28b7-9805-4023-a69b-e0c22da69bb5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121127-O-RU-12112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9113ea72-8b3f-44b2-bcd9-7e5a4949a1bb", + "node-edge-point-uuid": "37816db4-7cd0-40d1-84c9-6fca0a787bec" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "62e4cc19-5494-451f-8264-2a4817508f07", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121128-O-RU-12112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cba2dfc3-4748-46a7-9e9d-f1a2db465004", + "node-edge-point-uuid": "5545b7db-9ae3-4259-9d27-26a4ddc4e8ba" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "95ccd4eb-33d4-465e-a37a-94c2950b2255", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121129-O-RU-12112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84be32ee-af77-46ba-ac25-5f5a8bd2c4cb", + "node-edge-point-uuid": "e85249ad-a44e-4e83-a52f-79d95aa05533" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9fc5a4bf-a767-421c-9ed0-70a37120c0f9", + "node-edge-point-uuid": "0c2dd551-279c-44bb-813e-27fecb3b323f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7f1c84e9-ffd0-4087-bbe6-595839bff821", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12113-O-DU-1211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e132f2b2-f9cd-4454-a4be-5e1fb4295945", + "node-edge-point-uuid": "de265ac8-e4d5-40bd-8a75-bd415c19c1ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "640ff8a9-4d8d-4b29-869f-535f2c14528c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5daa408a-c2ac-42a8-998e-0bf2829d3c49", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121131-O-RU-12113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c7b506c7-b57c-455c-b109-0c33540ee89d", + "node-edge-point-uuid": "803adac9-f71e-4d66-a809-a8b5a1ed323f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "929389e3-6a3c-4c55-b775-2609501ba885", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121132-O-RU-12113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e47e1434-d7a0-4df6-ada5-547dff691579", + "node-edge-point-uuid": "31216bee-8e80-4e17-99af-25bde6724c3d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d7629f39-94a0-40df-aeca-2c208e33852e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121133-O-RU-12113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f9fb2cda-93a1-405f-bcd4-d61fb44eec04", + "node-edge-point-uuid": "fcd5955b-443d-4d1a-9d83-13e00125aa38" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ca7df163-bf74-419f-8a6b-8c1f4c4b28da", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121134-O-RU-12113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1dc08c3c-a7ee-485b-a2cd-554e08f9a7f6", + "node-edge-point-uuid": "f01b930e-cbf1-4e94-bd97-30480a72212b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bc7f522a-9f9c-419b-adb9-53e2125b1c23", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121135-O-RU-12113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "61c49431-1df9-4ece-ad4d-a86b412d338b", + "node-edge-point-uuid": "ad10b930-069a-4f04-a0da-0b06c39675c9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6126e377-c0c0-41cc-a0d1-40137110bc05", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121136-O-RU-12113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0490022c-7f68-446b-b3ca-b98bdffb3a3a", + "node-edge-point-uuid": "a8aa6c22-238f-49ef-b0de-098285785e70" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "35d12c43-6068-461c-a0aa-a8de28ddfb0e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121137-O-RU-12113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c416d99-74ea-4905-9686-f9df53393939", + "node-edge-point-uuid": "21038aeb-c3c8-4462-9d84-8994baf98dfb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "305a85a1-868e-4b0b-b852-1998eb8ceefc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121138-O-RU-12113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ce61d68d-ad26-4ebc-800e-1d4576a65dd7", + "node-edge-point-uuid": "0853543a-e3c1-4d05-875e-5510286ed005" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f8512bcf-1bff-4609-972a-fec988b6662e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121139-O-RU-12113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe7dc3ff-2706-41ed-a633-12fa0b22b5c2", + "node-edge-point-uuid": "0034be11-9da1-4577-a30d-5c8c602cd682" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1279b0e8-54ab-4f52-9192-512790b0b695", + "node-edge-point-uuid": "218339d1-3c3d-44db-8982-33d23f56b76b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4d39e3e5-bc58-4137-a8d7-d3cf7955960b", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12114-O-DU-1211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e132f2b2-f9cd-4454-a4be-5e1fb4295945", + "node-edge-point-uuid": "de265ac8-e4d5-40bd-8a75-bd415c19c1ea" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "018ef8a1-0e3d-4af9-ac40-15bbf9b0ea37" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "548100b6-670a-46fc-a13b-d9e73d44bb5e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121141-O-RU-12114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b59ecf42-cffa-4175-9b2d-813c8d368cb0", + "node-edge-point-uuid": "dfccb715-a380-4a4c-bf45-bba0a5830257" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0c1a4996-8bce-475a-9c8e-bd49ce48bbc2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121142-O-RU-12114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b6392841-bf67-4eed-a3ab-49fcce7f2452", + "node-edge-point-uuid": "362c5791-f06c-491e-a269-f3e6622ab7a2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d25216cc-9e03-4448-99f6-7741616ebbce", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121143-O-RU-12114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "701a2651-5974-4725-860e-58b10944f8f2", + "node-edge-point-uuid": "f83e2e94-832e-4220-8a36-9b065c4ecf33" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "27a04ff4-7068-4502-ba10-51a0d64e3d54", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121144-O-RU-12114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "61cfa1b7-789f-444e-a274-8e6f33b23a16", + "node-edge-point-uuid": "45acdc6f-1fc0-4049-8e44-8aac863f9ea5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fe059d21-4973-469b-a87d-41494c227c24", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121145-O-RU-12114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84317fbe-c519-4d57-939b-b2adac79a825", + "node-edge-point-uuid": "db0fe5a5-b577-4dbb-ac05-2377d1fb126f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bd179353-24a0-4e6e-953e-5ad221975f43", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121146-O-RU-12114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ecc85c6d-c076-4672-9c5c-c4cc0225d21d", + "node-edge-point-uuid": "b314c284-3e12-4549-81a8-ba96a8fb2209" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "65d18261-aaed-4cdc-bbe2-4473d6286a0a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121147-O-RU-12114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c8090029-7f4f-427d-a426-2289a5b40e51", + "node-edge-point-uuid": "d92c5a4e-6801-49d0-ba4f-7c0631a2440c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e5f3f9c1-1fb1-4fab-9e3a-1ddca938ec4a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121148-O-RU-12114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "56d916b4-fe54-4aaf-95c1-e3f80f46d01d", + "node-edge-point-uuid": "5d2dfecf-6049-41e5-9e83-a0fb2f6fff31" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "66b3c1b0-fc45-446d-b6e8-590ab25468f8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121149-O-RU-12114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ef79fa1-51b6-4781-b1d9-58b6523f70d7", + "node-edge-point-uuid": "f131cd90-d060-4488-8414-a072759b2bc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "888e2faf-b778-4f3b-ae0b-ab2c66c2503f", + "node-edge-point-uuid": "830862a4-55e8-43c0-97f8-d44f5971ffed" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "14ace2e5-f398-4413-9e68-0e84a7c918d8", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1212-O-CU-UP-121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ab004990-4583-4c83-9c54-33cef330f157", + "node-edge-point-uuid": "072d4189-61f2-4902-8949-1901683a35ff" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d844e84c-8af8-45bb-9328-2b09ae94d154", + "node-edge-point-uuid": "963181b4-8b05-478f-a49c-6c45315d59df" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "70b31ac5-9409-453f-b2d5-3f7b7aed8999", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12121-O-DU-1212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d844e84c-8af8-45bb-9328-2b09ae94d154", + "node-edge-point-uuid": "e2afec55-1659-47d7-8517-a49cd0ef4a07" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "8e11f665-7f83-4884-bc6d-1003a7c51ee2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d320c0cb-5665-49c7-b23f-1a93231c394c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121211-O-RU-12121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a25bb56c-e6b1-43d2-be94-7aeae7777274", + "node-edge-point-uuid": "d53eb429-ef27-4128-bb12-fa3510dfeed3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d18f8880-8b1d-4249-ba7e-09dbec8ab733", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121212-O-RU-12121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "da18cd18-48b4-4c41-ab54-d0c0d2ca2e84", + "node-edge-point-uuid": "60a848fc-cd4e-4ec6-b5c4-a1c0c46f348b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "595f19bc-0f09-41bb-9831-72efc23740ff", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121213-O-RU-12121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dcd48922-db43-4c7c-b6ef-f045e4851d5a", + "node-edge-point-uuid": "54c6dc5c-01d1-4d76-bf34-d5b527a8fa77" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5184b828-b234-48ee-8255-1bca2972018f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121214-O-RU-12121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "22c1d074-1cd4-4159-825d-7f864f189fc3", + "node-edge-point-uuid": "5e821cd7-5d4d-4e55-83ed-ca29b1d543b6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "378ac226-d236-4c89-959b-82816625faf5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121215-O-RU-12121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ec76080d-f027-4bdf-8c5f-98ad06257eae", + "node-edge-point-uuid": "43e55468-3ea0-4dbd-8c48-1346f10d5ce7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d0aa02db-17ac-4d6b-99a7-04f9c757c8d0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121216-O-RU-12121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1695cb0-51f5-4e6c-a927-0aa1d389440d", + "node-edge-point-uuid": "17948b4f-bcf4-42d0-9652-8360de865656" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0cf14f54-19c5-4df9-9473-c7142b979900", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121217-O-RU-12121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2dda1cc6-2aa6-45dd-ba2a-55309a4702f8", + "node-edge-point-uuid": "18746037-d2fc-4f07-ae9e-8e4167025cc7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "752fe4b3-12ab-4b53-8157-af831059491f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121218-O-RU-12121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6b05a629-01fa-4ebc-a0cc-96421172ce68", + "node-edge-point-uuid": "c8dc5971-be29-461e-ba5a-5591019fb4e7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8bc40bcb-a74b-48e3-a1b3-aa625e0ffdeb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121219-O-RU-12121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4e7159f-d112-4403-b414-f6e50a06d23a", + "node-edge-point-uuid": "c1c75b58-6982-4294-ad82-4c15dc833221" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "af0287f7-a52c-4cfd-811e-fe68661b120b", + "node-edge-point-uuid": "1bdc8864-5036-4d9c-86f0-a5d918044a57" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b032e50a-d8d1-4b1f-ab98-724fad046d67", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12122-O-DU-1212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d844e84c-8af8-45bb-9328-2b09ae94d154", + "node-edge-point-uuid": "e2afec55-1659-47d7-8517-a49cd0ef4a07" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "e5cae3a1-bde8-4b1a-adab-ba9956895954" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "893ccaa9-2961-4cae-965f-6c7be9169b90", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121221-O-RU-12122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7c2f9867-33c3-4f9c-8581-00ef032e912a", + "node-edge-point-uuid": "aae4399a-b2ca-4d7a-9d8a-39fe3e455ece" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d0555a59-0b8f-4e1d-8f9a-dea5d13d0f5e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121222-O-RU-12122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9c4530f9-6248-499a-bf08-f317c6116369", + "node-edge-point-uuid": "37c4f27e-74f6-44cd-b5d7-cfe1e0aa39f3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b6536c39-2fb6-4d30-876d-117c48478755", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121223-O-RU-12122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "41859340-2454-4459-a668-15b718ceb816", + "node-edge-point-uuid": "dec8377a-4af2-4d3c-9146-14fb9132dd0c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "df7be7ed-4fc1-4dbe-be07-c3b87ea2060a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121224-O-RU-12122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3edc0fa8-15a9-4091-a735-b67f6c96eb35", + "node-edge-point-uuid": "0d5d087e-20d3-4858-bbd6-a6eee600f25a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "051b65a4-7255-4ec9-9819-731838216033", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121225-O-RU-12122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0d07dd12-0b29-4e2c-9fcb-f57d818b82c4", + "node-edge-point-uuid": "aa8c1ce6-0b65-4f9a-a90b-3927f384c7b2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8419ed3e-e4f2-4f53-b2ca-1b6a83725f73", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121226-O-RU-12122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "331f1092-9686-42e5-b88b-74ef33d61eb9", + "node-edge-point-uuid": "ec9afd40-948a-4df3-b929-182f2ac45112" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "37916b6f-3f2c-47e8-86ce-6c3397ce890d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121227-O-RU-12122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "533a2e70-bfc0-478b-b4fb-ccc1e004a5de", + "node-edge-point-uuid": "953ca96d-c7d9-4797-8367-a297d5c56486" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6198d5a5-96ea-49e2-9584-2c972a849e65", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121228-O-RU-12122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c962db4b-cb90-4b9b-871a-53813af7d09e", + "node-edge-point-uuid": "3fbb02ff-795c-4839-9ecb-cd2eec80cbb9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d1e43120-e5b9-4f89-97da-7d7bea12a6a2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121229-O-RU-12122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94af3141-5887-4fed-a7cf-0609cb7cf1d9", + "node-edge-point-uuid": "1b723dcd-6745-4e36-8085-200a2dc2b33f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4df5bfe-cf22-4541-8e72-bd1f48acd606", + "node-edge-point-uuid": "3e86c632-91b9-4e6c-813b-fc9dd8e08628" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cf635469-a11e-4d77-9fb4-3c761001bb52", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12123-O-DU-1212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d844e84c-8af8-45bb-9328-2b09ae94d154", + "node-edge-point-uuid": "e2afec55-1659-47d7-8517-a49cd0ef4a07" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "0f801fa1-ead7-41e8-ab93-a4602d27c83f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9d139983-2a81-4851-8b4d-4fb531cdb4f1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121231-O-RU-12123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "576eae59-fe86-4064-ab3b-28f3f25fd20f", + "node-edge-point-uuid": "d59304e0-eab6-4a8b-acfb-bc4baee812df" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ee75f93e-e405-4fe6-bc45-59e9e6e7c174", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121232-O-RU-12123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cf3f900b-e5ba-4e63-a48b-14ec4c602c33", + "node-edge-point-uuid": "16550ad2-e813-4490-b049-39c4f38c260c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2df1fdc5-90d8-408b-a0cd-8ecf5aaa506e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121233-O-RU-12123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d59ee6e4-a5aa-4c7a-ab4d-8ad8d69a41a5", + "node-edge-point-uuid": "2d308784-192a-4866-bfff-9dcd9e28d0a3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4e1d0baa-efc0-4022-a51d-7c35d287b267", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121234-O-RU-12123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "23d2d03d-3f5f-4341-b87c-40cd2f205e39", + "node-edge-point-uuid": "e719449e-8562-415e-98cf-49780796d75e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8b3f459a-88e2-4355-bed6-e475443753ba", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121235-O-RU-12123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4a3f3ca-0128-4b17-89c6-1c396c368e36", + "node-edge-point-uuid": "b62b1dcd-46e4-499f-aa58-b30dfd598e7d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1fec1453-c3ce-493d-ad4c-62f32f43d2e1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121236-O-RU-12123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8dd8acf8-d26a-4411-bdd8-d9b3ec84a7df", + "node-edge-point-uuid": "2eff39b4-24ee-41cf-9b57-477ca7ae0239" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "29008b15-d96e-4cec-8f49-c3c7b5b67eee", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121237-O-RU-12123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b726a239-5e8e-4298-a7c8-58cbff36cf51", + "node-edge-point-uuid": "9129ed9d-0f6c-4516-bd01-b9e677671b7f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5fecc2f6-1087-464d-9ad3-aac825705a7a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121238-O-RU-12123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4e706fab-df72-4fd1-8949-d9a9f719b0b8", + "node-edge-point-uuid": "dfd44d00-b2b7-44c6-a58a-eba757683372" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6443f0c9-bff0-4fdc-b988-1f2884a2f392", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121239-O-RU-12123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a9e82b-e632-4302-8c56-4b2d95a1ce3a", + "node-edge-point-uuid": "43cb1337-5eda-44c1-adb5-02475ee4d455" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3b6a6abc-6152-4b72-9b58-ac02071e1bbf", + "node-edge-point-uuid": "18d290e1-1049-434e-9272-7447d4121940" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d4f30d78-0355-40ba-94e6-39ab81f9ead7", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12124-O-DU-1212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d844e84c-8af8-45bb-9328-2b09ae94d154", + "node-edge-point-uuid": "e2afec55-1659-47d7-8517-a49cd0ef4a07" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "66dc05da-e4f9-4c83-b563-56cde5ab3872" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a397feb7-8b21-4c5d-a984-ce4aa19c8773", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121241-O-RU-12124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9edbda2b-95be-4952-b38b-f5579770048c", + "node-edge-point-uuid": "8870caa1-0b5a-436d-8c97-793fe8378dcb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "49c6b63c-0f62-40ac-aa6e-3fe86b93dca5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121242-O-RU-12124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b9de758c-570e-4054-a53b-f493ea03a4a1", + "node-edge-point-uuid": "32ee3507-8acf-457c-bc25-2f346bb8297c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a2ee11c0-f954-489e-891e-0b7d8dbe9458", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121243-O-RU-12124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6ceaebf6-eac3-41bd-91a1-e00f267c4cc3", + "node-edge-point-uuid": "66bfa562-e160-4813-aed9-442d853c4b92" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ebf9c4a3-9fa9-4006-8fec-ed10e72737bb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121244-O-RU-12124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0d65aae0-fef3-4d65-adab-9e189aaa0947", + "node-edge-point-uuid": "62b00701-0aea-4d69-b3c0-95a517c366f3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9efddf1-510a-4cd4-bda4-9e9025e7f349", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121245-O-RU-12124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0a6551fb-ccaa-4dce-bd74-fd632f033266", + "node-edge-point-uuid": "9f1525dc-5e6a-41fa-9688-c0ba55639eea" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9761609-c906-40c6-9d1b-0c613cbe1776", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121246-O-RU-12124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ac8eb628-58a7-4695-a273-d824fc18d46b", + "node-edge-point-uuid": "2a1f9d31-b0cf-4e64-9c58-dd8c7553a843" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "eb5e1179-7eaf-4a86-9e17-1c73344003b6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121247-O-RU-12124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "804757cd-3662-4541-a1d8-c800e92235da", + "node-edge-point-uuid": "36b71d32-bae5-4082-abe1-926c97a44331" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "51f7d8f9-149c-469f-8b04-705fc1f7b90e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121248-O-RU-12124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5cc7b945-e659-405d-89c7-bd3f61d6ff6c", + "node-edge-point-uuid": "2e4b3313-74b6-439a-9f02-6da9ab0407bb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5eb9473f-fc71-4983-b089-3e2cf50ca156", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121249-O-RU-12124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1d3efb2-8bcd-48b6-9436-27c4ef518670", + "node-edge-point-uuid": "7ffce8ce-75a1-46b6-a06d-d94288d350c0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "72a26163-ed55-4f4c-b8d9-86d776e3fd3b", + "node-edge-point-uuid": "c233fef1-6b33-434b-86a6-bb107f5675cb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7078d3fa-85de-42bc-ae85-5adea9e82bd3", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1213-O-CU-UP-121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ab004990-4583-4c83-9c54-33cef330f157", + "node-edge-point-uuid": "072d4189-61f2-4902-8949-1901683a35ff" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "21d819bc-3421-4ce0-a2d1-853d9d761855", + "node-edge-point-uuid": "adcff33c-ae26-4876-a558-2287bdd08e8b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "841e0a6b-5ca4-4ba3-8569-df5572b32cd2", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12131-O-DU-1213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "21d819bc-3421-4ce0-a2d1-853d9d761855", + "node-edge-point-uuid": "0d698d14-e9a7-4ecb-afce-18ba4ed53fe8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "d5932661-752c-4616-9327-6474e43c25bc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1ac98cf4-dad2-45d3-bb81-bb4148002a3a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121311-O-RU-12131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13d8f783-c6bd-40b3-a7f7-28c927c8e60d", + "node-edge-point-uuid": "4d41ed11-7f7b-49f2-8cac-dcdd6010b424" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "834bf437-5477-41ce-bb7e-bd9211840335", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121312-O-RU-12131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2baa2fed-ff64-4340-8e65-278cb0409ac4", + "node-edge-point-uuid": "d91acf6e-de7c-436a-86a6-ae836f22336f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "600e2fb4-9e05-42c0-8907-68e8c83318b6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121313-O-RU-12131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6244668c-b9ae-4577-846a-39f05a2fedb4", + "node-edge-point-uuid": "5d48d601-20bf-4e8a-8941-7eb4293bc957" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bcf053de-13f9-4f3f-ace2-abc2fa0e3a33", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121314-O-RU-12131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dda7ff86-f2b5-41c2-bbaa-cc77ced19744", + "node-edge-point-uuid": "9f4bc0aa-cb42-4a73-99ff-1112546a2bfe" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0ff2b13b-f3bb-45ce-a0ac-252385e75715", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121315-O-RU-12131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "35720928-e688-465c-ab8b-e357011713a2", + "node-edge-point-uuid": "4538fda9-c026-4ff0-86e4-191e36c5ad4b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3a31c716-d820-458a-9257-fb35aff07407", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121316-O-RU-12131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cf505d1e-888c-4899-9d1c-231cfcd773dd", + "node-edge-point-uuid": "87b5537d-eece-4703-8396-ea1467c25536" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6dcd1ad1-f6a3-400d-8d59-ab91f7610b9c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121317-O-RU-12131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "89a3a75a-d672-407b-a884-6e9cf115b6be", + "node-edge-point-uuid": "d9593471-2100-4bc9-bab0-50b72a036a2e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "53c45b83-0675-4da9-8529-054d58365114", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121318-O-RU-12131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c0bf507d-678f-4c9b-aa78-9599dec8d156", + "node-edge-point-uuid": "c9d48c5e-3de5-4535-b2dc-0ad9727e4a60" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3e93babe-e57d-4cd0-a8c1-f5d208267cbb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121319-O-RU-12131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "75c85a9d-6414-46e5-86f5-db8b372fc882", + "node-edge-point-uuid": "432310f2-3f0e-4512-8320-3e27b918fcc0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d9ea8c48-09d9-46f9-bddf-5856ea40a07a", + "node-edge-point-uuid": "a66a3569-7cda-4ce2-8297-8421a9270cc9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cb78163c-2675-4f81-b40b-35ab6dbf0b7e", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12132-O-DU-1213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "21d819bc-3421-4ce0-a2d1-853d9d761855", + "node-edge-point-uuid": "0d698d14-e9a7-4ecb-afce-18ba4ed53fe8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "d4f43213-00ba-461f-b77c-54e36b65c618" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "26d50f2e-1bfe-424b-914c-228183d31fe4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121321-O-RU-12132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f0e49ca6-38e5-415c-bf17-a98db01e43d1", + "node-edge-point-uuid": "1d04e9e1-cbd1-4712-a510-c16c77c8036c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9216c76b-5b51-49df-bf9d-70c2f20815df", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121322-O-RU-12132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "825d3910-098c-4d2c-be89-6a27ea7af380", + "node-edge-point-uuid": "ee8ddfc9-3cca-413b-bcc1-13e7cc221704" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1b31d8c5-2683-4eba-8646-c89c0668622b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121323-O-RU-12132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "95358d88-18b5-4654-acf8-1d17b3e3d089", + "node-edge-point-uuid": "e43ee1c9-8bb5-4fd7-b07e-696f82914b27" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "835b80b9-ee54-4302-a581-3c88a202b475", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121324-O-RU-12132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "936cf044-6909-4053-af2a-3f1309b6b1ea", + "node-edge-point-uuid": "303bec55-41cb-4009-a631-ee71f3e038cf" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a2f371a8-7ca2-49a9-b8d0-2f9b04af2b7e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121325-O-RU-12132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d1928f37-2188-46e7-9824-5b8a611dc9c9", + "node-edge-point-uuid": "996dcead-7c75-49f6-a165-ad01e5c95e9a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1117875e-f4cd-49d0-8b6f-693b272f1934", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121326-O-RU-12132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b88feb50-bdc9-47dd-9c41-cc0066a05885", + "node-edge-point-uuid": "195b2ba0-741b-4aff-9e93-c1bbf288708f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c5d6cfc1-3c51-4b6b-8d9b-f3ff4ff5febf", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121327-O-RU-12132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "39a8fef5-fda1-4aa9-942a-19e91ad59458", + "node-edge-point-uuid": "d96e4b43-64a6-43b5-8744-be75882537dc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d5db1080-89e1-436f-886d-cbf802c9da62", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121328-O-RU-12132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "61bda422-44b9-49a7-b283-6b7504a1d143", + "node-edge-point-uuid": "bf6330bf-753b-4baf-9b44-b3620733b113" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a24dca7f-de4f-4fca-b760-2a71612458e0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121329-O-RU-12132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aad615c1-1a09-4d4e-82bc-928931b22277", + "node-edge-point-uuid": "55b284f0-45be-4b04-a6c8-33fc9538c29a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "da48d785-fd81-414e-a324-01d773933a87", + "node-edge-point-uuid": "8a661b00-d694-47bc-b708-d6d325e5c5e3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cad40ab5-72b4-4ea8-bcd3-87c747ab881c", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12133-O-DU-1213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "21d819bc-3421-4ce0-a2d1-853d9d761855", + "node-edge-point-uuid": "0d698d14-e9a7-4ecb-afce-18ba4ed53fe8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "37e97198-183e-47a7-9ab4-b66d8227fb15" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f68b9f2c-cef5-4af6-9297-e880b8d07dea", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121331-O-RU-12133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5c1e84ea-bca9-44e7-b3f2-5d1418ac0e93", + "node-edge-point-uuid": "f6f5004e-d1b8-46e3-ac02-fdb092990c01" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "aca32553-3399-44cf-91d2-f857d41fbca4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121332-O-RU-12133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "90878ae9-a419-4091-9052-6554ab7785d5", + "node-edge-point-uuid": "afe286e0-fa68-4388-a560-c6f5a4c8fc35" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b5c521d1-dd51-4abc-bd42-5b6a078af83a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121333-O-RU-12133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "28641b87-dbdf-4a0e-9b90-7579e3416617", + "node-edge-point-uuid": "2d572805-c813-4899-85bb-c84613e97307" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0bdf9240-6b38-4dcc-acbd-1a521154c4ed", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121334-O-RU-12133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0298e10c-bc82-4d01-a6af-6a2a18b3124e", + "node-edge-point-uuid": "6e3c515e-06a1-4e23-9ad8-abc1bf1983ac" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "66c100a4-0f1e-4117-93f6-d16a649c04f6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121335-O-RU-12133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a7395048-d8a0-4ee7-a985-78800d73552b", + "node-edge-point-uuid": "99f66bf0-82fa-4679-87e7-5c955cf8e92e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fd07240d-6087-4f6e-b4d9-43c8445c91f4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121336-O-RU-12133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bc8da452-0702-417e-a20a-984f881fa909", + "node-edge-point-uuid": "b579d222-8090-4f8f-bb11-a5f4e125b51b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "50da5bcf-5310-4ee9-837f-e36f7579691d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121337-O-RU-12133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "df85cb27-3e6c-4bec-8208-cd49d1751e74", + "node-edge-point-uuid": "62e27b71-5205-48fa-bc66-0a4395fc7821" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "137aabfe-cdce-4462-bec2-52ac543b4a55", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121338-O-RU-12133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9bc07a0c-3edd-4ee6-a65c-53d0cafa2a2d", + "node-edge-point-uuid": "beea5c90-dedf-4042-8560-44f1b9a15735" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4f258878-bbee-4b3a-9919-0bc9c9cfdee0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121339-O-RU-12133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f49885b9-e496-4d56-b181-bf7de6c75660", + "node-edge-point-uuid": "674ff74a-fb32-4b5d-8b30-9c06d645b07d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9f232298-703f-4a8f-b17d-993e0cf0810f", + "node-edge-point-uuid": "5efaf96f-212b-42f1-b1c9-e266e86baa0b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "18d33552-f068-4208-beac-cefb1747bf6e", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12134-O-DU-1213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "21d819bc-3421-4ce0-a2d1-853d9d761855", + "node-edge-point-uuid": "0d698d14-e9a7-4ecb-afce-18ba4ed53fe8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "aa761f94-4f13-4fde-8ce7-fac8c7e2f322" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4a0a7404-fc14-4785-ac33-24fbf9aea6cd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121341-O-RU-12134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6075b1fa-3387-40c4-85ee-6fbf91871d0f", + "node-edge-point-uuid": "7c4031fc-d7a7-4ebe-9eff-bf6882fe5851" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "47840732-345f-4c4f-abe7-e2fb4e61bcaf", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121342-O-RU-12134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "59a3ac93-fc35-404f-bdbd-2965537eb2cf", + "node-edge-point-uuid": "1533bd3f-94ef-41f9-bc7a-5eda44094630" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6951e1b7-9a9b-4530-8fd5-9dec9862acb9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121343-O-RU-12134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3994bb7d-11ec-4901-baba-28379d79ff86", + "node-edge-point-uuid": "e577326d-3d1a-49f1-aa3b-ad5728337471" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d648c955-51b8-4f1c-8f76-9fe24b85588a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121344-O-RU-12134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f52566b1-1804-4b84-a106-20ac113389ec", + "node-edge-point-uuid": "b92b5f6a-1ef2-443b-89e9-8e9062f775d1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "abaecf44-2e84-430c-92a3-de576f8ce0c8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121345-O-RU-12134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9ea8f81e-fbac-46b0-a1df-b5183280d5b0", + "node-edge-point-uuid": "679a68f3-eb93-4229-bc9d-56c2eaa6673d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "30a264d3-5768-4041-9ba5-6e6bd16ecd20", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121346-O-RU-12134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "04dfc899-2beb-48f1-9d17-054e9e1c7e41", + "node-edge-point-uuid": "28b82857-3156-433d-858f-a750f6ee7779" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6c27b758-6c48-4061-a05a-fc237fe37632", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121347-O-RU-12134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a8ceda42-1045-4fe4-a95b-1097f01c13f9", + "node-edge-point-uuid": "78552ef5-50ed-47ce-b61e-8323e629c4f7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ddeb7cee-0275-46ad-b602-c5978aa35d8f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121348-O-RU-12134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b67375e8-adde-49f1-9276-0d937d8ac15b", + "node-edge-point-uuid": "b2248537-5070-4d09-a2d4-16a9812973d4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "24bf0110-bd59-43c0-905c-9cd1b48c1884", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-121349-O-RU-12134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f255c355-8260-422d-a512-1022673dc5b9", + "node-edge-point-uuid": "cb88f8f0-0a67-42c0-9c13-48eb2ae82dd8" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "71dd152e-16d1-4780-9797-f2e9b5e6aab0", + "node-edge-point-uuid": "ef26dde2-ea72-4636-b59c-d93718fca756" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "89ae53c9-3963-4379-8171-0b7de1117e3e", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-CU-UP-122-NEAR-RT-RIC-12" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fd10c0ed-a1b3-4c88-866b-c4e9ee7770b4", + "node-edge-point-uuid": "c7153482-ab6d-41d2-aa7d-e4a2ba8852aa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc383d27-9563-42a7-96a7-46a0cbb5a805", + "node-edge-point-uuid": "391e4c6d-26b1-4b00-966d-a98f037945b7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "76007558-dbbb-4228-8837-7a32747edd70", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1221-O-CU-UP-122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc383d27-9563-42a7-96a7-46a0cbb5a805", + "node-edge-point-uuid": "76d1e14c-f9ef-445d-a11b-e3061e673e61" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ec5abf65-0d85-487f-96f5-56baa81f980a", + "node-edge-point-uuid": "7bfbb0d7-0f5b-4b8a-8859-435d9732f3de" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ac277397-23b8-477c-8454-ab8e1485ea2e", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12211-O-DU-1221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ec5abf65-0d85-487f-96f5-56baa81f980a", + "node-edge-point-uuid": "6b423903-d704-499b-9da0-0d4f7ad4c712" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "a19f70c4-6bcc-4980-9ae2-f8966a381ef5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5b697341-a7c2-4d23-8fa3-34f68e5057b1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122111-O-RU-12211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "10698cbf-565b-4a34-b615-a76b087ce366", + "node-edge-point-uuid": "55c54e28-53ff-494e-bbb9-3246c3d9021d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "776e758c-b09c-40c2-b643-579b1175adb2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122112-O-RU-12211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7a066047-1b09-4945-91cd-cb0bb3865685", + "node-edge-point-uuid": "24a4f380-a81c-4bc7-9196-b7ba76c83487" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c11882bb-628f-4a79-86f6-9f0a5b4d1e6a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122113-O-RU-12211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cbf475c8-1dcb-461c-92ff-57efd10d1250", + "node-edge-point-uuid": "93eae5ac-1e17-46c4-9ef2-3c3a5460a3cc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b41b83a8-e753-4186-8d94-9cb7e7d39038", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122114-O-RU-12211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "666fa54e-269a-4dfe-ac45-83ccefd88771", + "node-edge-point-uuid": "711614dd-9dbd-4f07-8b00-e57036fc71c0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a0ca58f8-f339-48d0-b8f4-325d59858540", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122115-O-RU-12211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "04dd0b82-758a-4aa6-bcc4-68ed48303337", + "node-edge-point-uuid": "b9b38c56-b746-4e6a-a9b8-868b88398a70" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ebe29f82-cda9-4fd2-8c94-96fa2fef76cb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122116-O-RU-12211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b910715f-feeb-43bc-97f5-00d3665c3d23", + "node-edge-point-uuid": "ac7d32cf-84ec-459d-a105-b17bfb487fc3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ee5509d2-296a-48ab-8fd2-47b58d779648", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122117-O-RU-12211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0a803031-6ad0-4ca8-b5e5-e560822624f9", + "node-edge-point-uuid": "bf6105cb-4974-4f13-8fc4-575969b9e6e2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "48aa4fa4-5ad0-4984-b7dc-61ada9c9ba0f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122118-O-RU-12211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "04bb0a31-33ef-487c-bf49-b6ddfbf8aaa2", + "node-edge-point-uuid": "9d0734f9-ce68-41c6-9a7e-575b655fe2b4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5087cd2a-4cc3-4c74-9991-387ed2eb91de", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122119-O-RU-12211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79b03d8a-83df-4335-945f-c300035de41f", + "node-edge-point-uuid": "8909bb68-82ea-4f0d-b28d-159cac65a140" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0f691f1f-48a3-4e01-b9d9-6d3f1d094d46", + "node-edge-point-uuid": "ccda7877-4e6d-47e6-94f1-67c7c2620e9e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "17a39673-168b-4448-ae97-0d0b108bac63", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12212-O-DU-1221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ec5abf65-0d85-487f-96f5-56baa81f980a", + "node-edge-point-uuid": "6b423903-d704-499b-9da0-0d4f7ad4c712" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "1aac623f-ee49-4353-86ce-24b67965e760" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "aca093d7-83d8-4569-b114-5017eced5802", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122121-O-RU-12212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "97ac6f9d-6986-4e03-ba69-0905a7e8dc4b", + "node-edge-point-uuid": "cda6370d-3260-46d0-a2ef-eb68852c0941" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "50eda1bd-5521-4bc3-9cba-fe35aa6dbf7a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122122-O-RU-12212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d5770f00-5e8c-4819-bfc6-fbe3ba69ca79", + "node-edge-point-uuid": "5e918e27-ad66-43b8-a457-e57c2effa238" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0fbbdeb3-b3e2-4438-aa4d-0082b197e25d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122123-O-RU-12212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "668e7244-3f80-4cbf-a4f4-3d2cd99cb342", + "node-edge-point-uuid": "d547c3ea-68ec-42a8-83a2-eaf55a1cb052" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5e653ecd-dcdb-4da7-8cb8-6eb6c57baa98", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122124-O-RU-12212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1117e2e6-ecda-4c2b-97b7-e20d9956bfe2", + "node-edge-point-uuid": "750b1545-732f-4e6b-937c-749f501238a3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "aa4f1ba3-cef1-4737-8e02-1e2b94c99fed", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122125-O-RU-12212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "653bc823-8751-4e7e-80e7-910e3cf2f961", + "node-edge-point-uuid": "d0f7239c-14e2-47c5-8700-14dd4d675a27" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "799a00a8-2546-4f44-9140-ac16e997ec31", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122126-O-RU-12212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff1a085f-93ab-43c8-bc20-7085eb8beafa", + "node-edge-point-uuid": "b78baac9-0af5-45f4-8648-7f4f543631e7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9b556f7-4bcc-48fc-bf2a-0c343bcbe8d8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122127-O-RU-12212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "31598aea-fd9c-4027-a8e8-4f8f14f34183", + "node-edge-point-uuid": "45271182-901b-4fc6-b194-c887e4c28288" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b97daeab-f2fe-4f8b-bfd8-aa62602316cd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122128-O-RU-12212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "754dc0e3-1526-4d3b-9156-995379962edd", + "node-edge-point-uuid": "b2494bd6-2890-459c-ba53-399f35d0d8f1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5b386d06-bb27-4226-94d4-f2fc2d4a44c4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122129-O-RU-12212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99292976-b034-4684-a817-32271f2f5a7a", + "node-edge-point-uuid": "bb2eac8d-e053-4cc2-90ba-2a619a44db56" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8c2e4126-b9c7-47d0-bb83-a90903ae5e82", + "node-edge-point-uuid": "a7912257-eb33-4d07-a614-3326ac75684b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e8f11bc7-385e-4b8b-8d71-e456576a7895", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12213-O-DU-1221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ec5abf65-0d85-487f-96f5-56baa81f980a", + "node-edge-point-uuid": "6b423903-d704-499b-9da0-0d4f7ad4c712" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "09c03d31-b969-442f-a27e-e5a5d600036f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fd794278-80cb-499d-99e7-dd8a42bc6b8c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122131-O-RU-12213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d628ebfd-3760-4e06-95dd-d7fac1160644", + "node-edge-point-uuid": "1128d05d-a01b-40f1-8704-853881ffa9ad" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "99053a70-50e6-4615-a322-d277d2b242b0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122132-O-RU-12213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ae4f9b3b-efda-4243-86cf-1be3831d31a7", + "node-edge-point-uuid": "2698198c-e925-4c4c-bc55-c02ce7951fad" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4b52f769-6183-49f4-92e7-cfb0570bb71f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122133-O-RU-12213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d03474e6-8ee9-4ff4-a1d5-0e515592da89", + "node-edge-point-uuid": "e5c00537-832f-4c43-b0b8-39ab0ed0e020" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fdcde6ea-88f6-40a0-8cbd-ae8247674392", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122134-O-RU-12213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9f088816-4f56-4bc0-a4e6-477529dfc7b8", + "node-edge-point-uuid": "d0e26063-afc8-4a95-8aa2-3ae571f29c16" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5b478920-1ac1-4491-a077-ca4022584b35", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122135-O-RU-12213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c087c8f6-513f-46c2-a478-4ce5be07ab40", + "node-edge-point-uuid": "fc890581-97ef-47d6-8056-921af8e5b35f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "18bc04ab-9b60-4f35-917f-c44b09561b4d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122136-O-RU-12213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "95d95798-49a4-4549-a5de-9146e72c1b1b", + "node-edge-point-uuid": "97b55265-feb0-4964-8f77-2a62ffc50478" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "202796ea-1aa0-487e-9f9a-b92c7a684007", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122137-O-RU-12213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ce95b91a-7342-43ad-b083-a0a28a564ed1", + "node-edge-point-uuid": "5938a830-1037-422a-b91d-6f904b7fa9f0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0104836d-554a-4c05-8b5e-f768e60dc18c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122138-O-RU-12213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "032535a4-35ee-4642-a236-4598fbcf08bb", + "node-edge-point-uuid": "11e490d8-83d3-4dac-91ba-d186ebe12ba2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d5aaffcc-db69-4839-ab7a-6b6d57e63cde", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122139-O-RU-12213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58fc8b13-d964-4676-884c-9b31720f42ff", + "node-edge-point-uuid": "19ce66a3-40c1-4abe-8a50-604cd97de702" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fde17b41-1ebf-4d3c-93ea-dd855a313c8b", + "node-edge-point-uuid": "00ddce0c-c322-46bd-a8b2-4e624c0e2f61" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "550f683e-54b0-41c5-a581-d934c14524b8", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12214-O-DU-1221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ec5abf65-0d85-487f-96f5-56baa81f980a", + "node-edge-point-uuid": "6b423903-d704-499b-9da0-0d4f7ad4c712" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "6078785b-be8f-40c1-8908-4d6ce84f44bc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8dc1ce4d-08c8-451b-8eba-51ddf3a54bdf", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122141-O-RU-12214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fa0ec55c-5565-4eb7-8825-d4617be1ba76", + "node-edge-point-uuid": "5a732181-e59a-4bbe-92ee-dfc9f00a4033" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "67b2ba13-a9ec-4e81-9b5d-dd742252fae9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122142-O-RU-12214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8ed5fd4-f801-40c4-884c-e14672439219", + "node-edge-point-uuid": "1b66508f-7982-4521-9346-534831da5f99" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f489e620-d79a-4a60-80f0-8af997bd0e08", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122143-O-RU-12214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1cf6bce4-b4af-48f7-8b7b-60d9bfa8d777", + "node-edge-point-uuid": "d1d7b066-7ff9-4123-ba27-16162323558b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f5794ba1-6e13-491a-b742-6bde25d6e67a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122144-O-RU-12214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "08440540-d8d6-4dfe-8b47-cda6d5cc6eca", + "node-edge-point-uuid": "0415ec6c-bb23-4101-a149-e415bc668ad3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b9430112-26ba-4667-9b62-84e10c6175ff", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122145-O-RU-12214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7e1d36ab-056b-4651-a7cd-93fc9ab93b87", + "node-edge-point-uuid": "305505c6-64ff-4863-bc6f-2379251a474c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "84efed5c-b885-47c5-b72a-99a6d73b772b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122146-O-RU-12214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5c3da49-333a-4b2f-ada9-31dbd52fd08f", + "node-edge-point-uuid": "f4bd6f2e-dbd3-4e70-b4a0-7a00d46a2d8b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "353aee7d-2b61-4c4a-a971-a9fc6800a4f0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122147-O-RU-12214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27a45bc6-894f-4dd9-afdc-0a426669d183", + "node-edge-point-uuid": "3dd5d6a2-36fa-4f2e-9582-a47e1ec79402" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8df3b65f-4408-4210-8c21-44354a945610", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122148-O-RU-12214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5cfe8011-f20c-40bb-a01e-52de447c6467", + "node-edge-point-uuid": "9fcafc3c-4a9a-4ee9-8813-407a846465e7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2f41a8a4-f421-479a-950c-6f765a53ae4e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122149-O-RU-12214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fca04ef8-0e63-4991-b912-c385a5d59b83", + "node-edge-point-uuid": "5431220b-b9db-41a0-a838-327edf1ba522" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "98db7640-3c6d-4274-99d4-f7679601c928", + "node-edge-point-uuid": "4104bd9e-95f2-4930-b240-77a9342858d0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f59ab6d0-f4c3-4969-bfe8-91bb9935c877", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1222-O-CU-UP-122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc383d27-9563-42a7-96a7-46a0cbb5a805", + "node-edge-point-uuid": "76d1e14c-f9ef-445d-a11b-e3061e673e61" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "268f540d-1444-42b1-9f98-b3dd1d47910d", + "node-edge-point-uuid": "56371cc5-f5e6-448a-85ba-7f4268f95650" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "43934c0d-1663-4f4c-9c6d-6e4a71830e94", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12221-O-DU-1222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "268f540d-1444-42b1-9f98-b3dd1d47910d", + "node-edge-point-uuid": "991c5ac8-902f-4c0e-9afb-f14dcdd433fb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "24181009-211e-4ab1-ab96-050a707e62d7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "53ffcb97-bdc2-434e-9a0a-3495919dc223", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122211-O-RU-12221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "12578fd1-d081-401b-bf28-ed8868a33728", + "node-edge-point-uuid": "09d90d67-5802-4038-8f5e-4bdefa1d8544" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7c6626f5-b655-4398-9ab1-4141351138c5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122212-O-RU-12221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3dc2bb5b-1532-4a82-8d4c-f9e319019f87", + "node-edge-point-uuid": "1b7bc6db-0e0f-41ab-890d-7de09e61569d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e6f78021-80f8-4c00-8acf-afcc39606355", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122213-O-RU-12221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "20cde692-8c3f-4f1c-b4bf-5c8d386d7737", + "node-edge-point-uuid": "34d5d5c2-ee9f-4140-8aed-1f752834300a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6772dad4-bee1-41f6-ad24-a6bb6de91840", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122214-O-RU-12221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "853918ad-bf9a-4e03-9348-d694e4265b28", + "node-edge-point-uuid": "e9e65f29-5529-4caf-befc-da5e715247f4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d2310318-c08d-4fcf-bf07-0750858bd274", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122215-O-RU-12221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "37dcaab1-3409-4105-9635-ed232a017f2a", + "node-edge-point-uuid": "bc585951-500b-4c90-8d05-2e3107434f7c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bd9ebd39-d665-4f4d-ad42-48c9346b28ca", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122216-O-RU-12221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "71d027b0-2f0e-4aec-8a0d-d51fe97879bb", + "node-edge-point-uuid": "04d73d40-cd15-43cd-8a4c-2515f5133ff1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2682bd4a-86db-4bc3-8bea-96ceb1f917d8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122217-O-RU-12221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5f1bac2a-073a-4040-85b6-8f9db200200a", + "node-edge-point-uuid": "93ffbf99-d57a-41f0-9163-e90ba3cef6dc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c10ed739-896e-41dd-a68d-594ea9431262", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122218-O-RU-12221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0415f986-0e92-446a-bf43-1a25d05197c9", + "node-edge-point-uuid": "d4ff09c2-e77c-4e49-9a5c-15f7e1125152" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5400c5df-4bc9-4f2a-a0c6-9532aa862746", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122219-O-RU-12221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6187e4e9-3d5f-459d-b162-94a163b38bd8", + "node-edge-point-uuid": "fce775f3-d9c0-4ace-92c5-a537347ef5f9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a7e2251f-e6d7-4571-8afc-7bbbcaf48a64", + "node-edge-point-uuid": "4d055e8b-f556-4081-9ae6-e42fa1d36844" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "51c43039-2920-4259-a18e-113047b5297e", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12222-O-DU-1222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "268f540d-1444-42b1-9f98-b3dd1d47910d", + "node-edge-point-uuid": "991c5ac8-902f-4c0e-9afb-f14dcdd433fb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "41e58782-afc2-4e36-b29e-44b58b7d9ef5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "533a550d-4b12-40ef-870c-8248973e72a8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122221-O-RU-12222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "98cc17eb-9695-4fa0-8dae-ad20455d371c", + "node-edge-point-uuid": "e8fe4be3-2b80-4fef-8b65-1f97ef29a1f6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d832050d-81c0-489c-91aa-498fc8fd5f36", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122222-O-RU-12222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c64c1ab4-cfe3-43cd-9bd7-e9ef8b9b262e", + "node-edge-point-uuid": "e7f251c9-6cd7-4744-af52-187bf89de689" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9dc2cc1d-9c80-4051-bb9a-5d27ec00298c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122223-O-RU-12222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f1e33289-12ce-4227-9615-83e4e620f2b8", + "node-edge-point-uuid": "c27be98f-c91d-443a-8dae-c1449b5ecd5c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "27dddc84-fc16-4eac-b0c6-9b71492511e7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122224-O-RU-12222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c8874ed9-148f-4ffc-b79c-18f22782bb69", + "node-edge-point-uuid": "3a69a2e9-8aca-4c63-9d6a-2f23be507e91" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1f73b989-42fd-48a2-ae8d-d1dc4835415e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122225-O-RU-12222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1d655ee1-8c49-4463-ac54-ac5bed466566", + "node-edge-point-uuid": "737232dd-654a-413e-9117-c9e008fc7a2b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "28487044-23de-42f6-b281-befbac7d0b2c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122226-O-RU-12222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1da345e-725e-45ec-905b-ad738759b200", + "node-edge-point-uuid": "db3fb2d0-1b12-4983-ad4a-287a30d4923d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6190a344-16b1-4d22-a78e-87ceb67c3cec", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122227-O-RU-12222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cd4493f5-c632-42d8-989a-28da557df564", + "node-edge-point-uuid": "c2ee15f4-a32b-4f68-8caf-2cb18290157a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b74c49eb-74e5-45cb-b815-909a31567952", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122228-O-RU-12222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1af022e0-7c67-41da-9f52-a4b38f24e7d7", + "node-edge-point-uuid": "fd9cfa83-52e3-4e96-b6a7-e46cf4690811" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "feb4ea17-dc03-41c0-b2e6-a7d77916b861", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122229-O-RU-12222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b02b897-434d-4b7f-bc62-5e4a3c06154a", + "node-edge-point-uuid": "86741bb8-9d5d-47a5-bc0a-cabfed8aedbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8effd64b-c4a0-46da-a74d-93f35972cce6", + "node-edge-point-uuid": "80905e6c-5709-45b7-a492-9672e4393973" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "11a222e5-25bd-4ab2-9ae2-324d6dedb36a", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12223-O-DU-1222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "268f540d-1444-42b1-9f98-b3dd1d47910d", + "node-edge-point-uuid": "991c5ac8-902f-4c0e-9afb-f14dcdd433fb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "bf550280-1417-4167-959b-bbe86771ade9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6449bdbb-461d-423a-82ef-d7acaa7f93ed", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122231-O-RU-12223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dfc28891-7934-4f5c-9f24-60bd4ede7d9a", + "node-edge-point-uuid": "9cebc0bb-cae0-463c-aa78-1ba38475598a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "11464e00-06a3-45cc-afa5-d2bb8c860e80", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122232-O-RU-12223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "46eb17a7-8158-407c-bebe-2c577a799539", + "node-edge-point-uuid": "b045da0a-50c5-43ab-a04c-3785b84da509" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cf874b47-f8e4-4c06-84c9-9ca7a88e8b79", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122233-O-RU-12223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c726f15b-5fc0-4c87-984c-e29a45cfeaa6", + "node-edge-point-uuid": "67d7bb7c-cf03-4175-bde8-06cbeca951ad" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "420b9502-ac2e-42d3-ab31-6dfa90218a63", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122234-O-RU-12223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9bc6d624-1fef-463b-9e62-1ac769341249", + "node-edge-point-uuid": "94c652e6-f7fe-4e85-83da-8bc2d00c86f3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "755ae78a-14c3-4afb-aaaa-3b52ef7a30da", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122235-O-RU-12223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6b134c4-9336-4c06-becb-88f0d2a628c1", + "node-edge-point-uuid": "4726f2d3-65f7-49a0-98e8-0ad7392e663a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a153f42c-35de-40ab-bb84-0e35f537af82", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122236-O-RU-12223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "786d3876-b001-48f4-9fef-ec8c2848a2ea", + "node-edge-point-uuid": "32b5a4c4-679e-4da7-b411-ae40c69575f4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9263d0cd-8218-4142-95e9-032501cffc3a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122237-O-RU-12223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "395202a6-c276-4b7d-85f8-d364444b81a0", + "node-edge-point-uuid": "1299c6ec-0ba0-4f02-88f2-a2cbb0f98209" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "105b8178-5a02-4f1f-97b2-66e7a46f821f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122238-O-RU-12223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7bd591a2-8b9c-4d14-a8ea-54a42f7860d4", + "node-edge-point-uuid": "9a54f85d-d18e-4b91-afa5-0d280830bdca" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "46678e7b-2551-4d50-946a-452b27276db5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122239-O-RU-12223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1aaae3a0-27ce-49c3-8204-d0793e084773", + "node-edge-point-uuid": "0f55f129-32da-4783-ab13-f0503d3fd504" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7f2331ca-6a05-4f03-9747-f3c3c46871ed", + "node-edge-point-uuid": "0962f3b9-11a9-4fbd-84d0-6d48c81278da" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "978492e3-5fb2-4654-b692-5a4c79dacb91", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12224-O-DU-1222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "268f540d-1444-42b1-9f98-b3dd1d47910d", + "node-edge-point-uuid": "991c5ac8-902f-4c0e-9afb-f14dcdd433fb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "8bf64dbc-c950-4be0-9a57-e0bb0d33174b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a5579d7d-0876-4b7d-898d-fe9ed280cbc5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122241-O-RU-12224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "84f61d8a-adb5-4b30-816c-695a59d2396f", + "node-edge-point-uuid": "4254e16c-f9fa-4f6d-8103-678dcc3253e5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e2d5cf75-b831-4835-b7c5-a109b3b889ab", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122242-O-RU-12224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "77f67be1-f0c1-4def-b8dd-7c9266219731", + "node-edge-point-uuid": "59d70ac7-3c4e-4a7e-8645-f55828a5cee2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "aa2bbb97-8575-48e4-b946-cd8ef0790fd8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122243-O-RU-12224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1b3938a2-73d9-4dfc-88fd-c662da354750", + "node-edge-point-uuid": "476db8ef-3d52-4de2-a916-603018563585" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "86521175-8df6-496f-a29c-263be892e4df", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122244-O-RU-12224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bb1dcd10-4036-4786-b52c-b2bacfbfe899", + "node-edge-point-uuid": "4544a112-8954-420d-84b0-124743a39f40" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b35813fd-a7d1-467c-892f-d8e746160b02", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122245-O-RU-12224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "204047be-22ca-49fd-9129-414e281f2df1", + "node-edge-point-uuid": "dd19430e-554b-47d4-912f-463817a102d7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e9de7b95-76ce-4a2c-88dc-a42cdd06f83a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122246-O-RU-12224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8c147158-1d63-4b56-bb3c-1450d101ef68", + "node-edge-point-uuid": "09781756-fb21-4f2e-91d2-50accf3f4c98" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "856729be-8dd4-424d-9178-d50cce72ee04", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122247-O-RU-12224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "71c4a55b-625d-4fe9-811c-11a50624689c", + "node-edge-point-uuid": "0e32a2a9-abc6-4c4c-abfd-3cce2e00f0a5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9dbdf367-1fba-4614-a969-922a0a53cd49", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122248-O-RU-12224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e20e43e5-e180-43a9-8cea-00495332e17a", + "node-edge-point-uuid": "ba0043ec-e42e-44c2-901b-eedf1c005502" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e9031294-6256-46da-acb1-a66c3541c92e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122249-O-RU-12224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc492a25-2edc-45c3-8753-43f1f33ffa73", + "node-edge-point-uuid": "b2d505b7-a3cd-4abd-9266-e49217265a2a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "68d30e97-29b1-4247-b52d-97997ed81e58", + "node-edge-point-uuid": "168ebd1e-0556-4a55-b64c-94606a2fe723" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6ecd1a13-f593-44a8-b58c-599c68aca9c2", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-1223-O-CU-UP-122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc383d27-9563-42a7-96a7-46a0cbb5a805", + "node-edge-point-uuid": "76d1e14c-f9ef-445d-a11b-e3061e673e61" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef519e6f-1738-4175-b0bd-1da45103c82d", + "node-edge-point-uuid": "694535ee-e915-4bde-9da0-a798913ef908" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "aec17952-6079-41ce-b00d-709c95a8609b", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12231-O-DU-1223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef519e6f-1738-4175-b0bd-1da45103c82d", + "node-edge-point-uuid": "0d00c1d9-85df-4b16-a18f-74141cf5353f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "42c8663c-5aa2-45d2-b2ca-6ac11e29d8a0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fdaa3378-5000-44f6-ac7b-07a55b5b783f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122311-O-RU-12231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2f392b86-1817-4432-b1f7-6d89cc15b36d", + "node-edge-point-uuid": "65546252-cc1d-450c-b569-2f2b6f32589d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8efb5708-e07d-44ab-be81-4509515995fa", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122312-O-RU-12231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e331c1ca-8666-4b41-ba09-5f4210f60598", + "node-edge-point-uuid": "16ba203a-fc74-4156-850c-0f86c18aeeb0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "70e06f0e-9c5e-4e7e-9286-2a899d3171ac", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122313-O-RU-12231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1e46d69-fb99-4689-9e21-af5b1440540e", + "node-edge-point-uuid": "df054d74-42ad-454b-b08b-08087051413d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d3e83397-8a0d-4d6f-8acd-88671a1b317c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122314-O-RU-12231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1f879da4-2933-46da-a603-cef695ef4cc7", + "node-edge-point-uuid": "3f08f621-2069-451e-8845-22a35764c954" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9198e2ac-3ba7-43b1-bc93-7716dab721b9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122315-O-RU-12231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "21c59283-9ede-483f-b17a-2029d534535a", + "node-edge-point-uuid": "10d2b263-9b22-44ca-b328-09d486e92679" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "141e1f49-9090-49e4-b83b-b29fdc21e104", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122316-O-RU-12231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ad62bac8-5544-491c-ae76-436edc47e845", + "node-edge-point-uuid": "7d69601a-f976-4ccb-b530-d4955c015055" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6ecbb06d-9cee-4ff8-b4b5-ce1c336f3c6b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122317-O-RU-12231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc3e9c6e-719c-4f72-a5e5-e54906227750", + "node-edge-point-uuid": "eb405fa9-2846-4b79-a6de-761d7d41199c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "178b55c3-4684-44a8-b884-aa15f78afbbd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122318-O-RU-12231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1935d79c-cb07-4c72-b709-b254b914767e", + "node-edge-point-uuid": "4d8e4f97-8819-4af7-9cf3-d61314dee08d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3f9aa6e8-ef01-4722-ad63-a880690d6995", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122319-O-RU-12231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6a90db3-e959-48bc-9c1d-f53fc3c44186", + "node-edge-point-uuid": "f2cdf08b-7bf2-40ca-b3e1-3ab601595135" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9f247c8f-a5ad-48f4-a72e-db3675843719", + "node-edge-point-uuid": "8e8b6735-db24-4660-b27a-4c56af7c2886" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b76c6105-ec15-432b-9305-0f92be1f84b6", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12232-O-DU-1223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef519e6f-1738-4175-b0bd-1da45103c82d", + "node-edge-point-uuid": "0d00c1d9-85df-4b16-a18f-74141cf5353f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "cccde60c-8333-464f-ac4e-860d10141100" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "606600ca-f23d-4c0e-b4d4-e481ff2d3ed6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122321-O-RU-12232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "add3ed5a-97df-43e7-8c0b-7b2b92577d4a", + "node-edge-point-uuid": "f8a7b6a4-0e04-4a1d-a2b0-f4737c28a3d5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cfec0e54-d787-48b5-84e2-2d8b6d04877c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122322-O-RU-12232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0ba3bef2-c0bc-417a-8c1d-2a4e7394e91f", + "node-edge-point-uuid": "70991a8e-df42-46fa-8086-a093305a1055" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b2ad8027-3f7e-4c47-ac54-c37cd43dce39", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122323-O-RU-12232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c2825e0b-af2d-4383-a6f7-5b42901f6886", + "node-edge-point-uuid": "5964b27f-369b-47f1-9eb7-a95a692f45a4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "86a16c86-1eec-4e3b-8f78-68fd9c70f5d1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122324-O-RU-12232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8db277ad-2376-4de6-a637-7b1c35742398", + "node-edge-point-uuid": "d64a305c-622d-4b3d-aeef-47daef33a277" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3a92150a-61a8-45cb-84a6-7735a4ffa354", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122325-O-RU-12232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ecb12b76-753a-48ec-951b-e562a42bec90", + "node-edge-point-uuid": "ad26a588-8535-4d47-8cd0-0d9a57067b6c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9bdf2011-f982-4c95-b82b-2e3a099be477", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122326-O-RU-12232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef9afaa0-c44d-445e-a968-dbd871649660", + "node-edge-point-uuid": "5635a6a4-07b3-469f-ba8f-de7a7cf7b452" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f98b5102-4e4a-437a-8d91-c33fc3696604", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122327-O-RU-12232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "47d69699-aeac-4b68-8f0d-3a06d2f1d525", + "node-edge-point-uuid": "9c555f35-7984-4f1a-9a65-7b4d09b2845f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cc898b8b-0db4-4a16-b184-0a8dd85fd0e9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122328-O-RU-12232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c4dc8903-8746-4311-b0fc-22c11d8e7745", + "node-edge-point-uuid": "ff592555-8658-45eb-bb66-1eee32e543e4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "eaa56dfb-27d5-4336-890e-2542417350c9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122329-O-RU-12232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc214aef-a8da-4020-b8d4-71d510f8d74e", + "node-edge-point-uuid": "ae4b43c4-8030-4ed1-814b-c8f0f73c71b9" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7b987ed5-88ab-4e00-9bd7-d8010d9e19f3", + "node-edge-point-uuid": "d8280afb-a9eb-47a0-bed2-8a26567a472b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "18849087-7c3c-4897-9f9a-2edb289856f8", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12233-O-DU-1223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef519e6f-1738-4175-b0bd-1da45103c82d", + "node-edge-point-uuid": "0d00c1d9-85df-4b16-a18f-74141cf5353f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "1d1f5b7d-62d1-4f27-a23b-16c74874b3dd" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "184b69a6-b158-4db3-8c75-fb8e33d9aed8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122331-O-RU-12233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f707a0a0-1423-4c8a-8fdb-1e6661a2fe45", + "node-edge-point-uuid": "fad983f6-5ba4-4078-87fb-5551863ed698" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0b33770d-db91-4dd2-975c-7d080bde27fa", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122332-O-RU-12233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b394bd38-2626-48cd-89ff-a7d926af6251", + "node-edge-point-uuid": "ad72fa2e-01d0-477e-8c06-bf94471ffc99" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "185c572e-71de-4d95-9285-126ef2bfdf84", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122333-O-RU-12233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "af725876-fdec-44b0-931b-18dacaa52df2", + "node-edge-point-uuid": "4c09e7b2-e18d-40dd-8035-a5d19c0ed58d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ff54c680-dda3-42b1-bc1a-f4c2f2298ce1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122334-O-RU-12233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "018c1cd7-20c8-4244-a901-799b1f87bce0", + "node-edge-point-uuid": "7d033296-d7a0-40a1-9cdb-f9475a25733f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "df4e49cc-c306-42c3-a48e-2344fcb9f36e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122335-O-RU-12233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4a4b01e-907c-4a34-b887-b0feb5f0089b", + "node-edge-point-uuid": "a77d507e-c454-41a4-a547-9339973b97e8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7ed73f40-9deb-40eb-950e-5c658d83d154", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122336-O-RU-12233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18c36c67-e6aa-49d1-82c9-e0f8b04ac7e3", + "node-edge-point-uuid": "0b0677a7-e35f-451c-9f1c-e0530a27acaa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fadeb617-4c81-494d-8b50-75fd742e8b71", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122337-O-RU-12233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5d79781e-8c04-4dd5-a3b0-1e99eee18e4e", + "node-edge-point-uuid": "b12e688b-a1c4-44e3-9df3-44ada662516a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "07a52643-be49-4a2e-bc6d-b7ccd4b94d10", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122338-O-RU-12233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cd5170d8-c2bc-4a2d-9518-f89e8eb55b24", + "node-edge-point-uuid": "c0f0c4ad-8972-497c-89fb-1098f744439f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "97e02e06-4ddc-40c0-a59a-3a54265d8a5f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122339-O-RU-12233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e9230fd9-352a-4cc3-9e17-51b09e1b7414", + "node-edge-point-uuid": "63c63073-c3c2-4f44-96db-88e44a4d5a3d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d13df449-028e-4edb-b6de-3813d98cc752", + "node-edge-point-uuid": "67ea2fc8-b80a-41cc-88da-77cdc072a0f2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5715d784-30cd-4e8b-8e93-a90866d4c235", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-12234-O-DU-1223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef519e6f-1738-4175-b0bd-1da45103c82d", + "node-edge-point-uuid": "0d00c1d9-85df-4b16-a18f-74141cf5353f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "3be371d5-02e4-4cc2-9fff-e49361c2ee44" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6d904b73-4960-4740-9ffb-058336ce9990", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122341-O-RU-12234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "beb5e955-26c0-4daf-b1ae-74175f1cca5f", + "node-edge-point-uuid": "97dc2482-231a-42d2-87fc-f214155335d2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f0c9e026-141a-42c9-a68e-dbabb8f0552c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122342-O-RU-12234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "241cc7bf-8270-44bd-8211-f4e9ddb63d23", + "node-edge-point-uuid": "6f738bda-486c-47ba-867d-e9651695ba41" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "00fcbaed-4f38-4013-862a-81bce5dd1e07", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122343-O-RU-12234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "551f763a-f6df-4568-8e12-093f7c40bafe", + "node-edge-point-uuid": "1d2c494c-4f04-4265-8bd5-64a373a28d90" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e5bef778-ea50-42c5-8677-52ce93985994", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122344-O-RU-12234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a27cc9fa-7ea6-4daf-9323-22f4920e554f", + "node-edge-point-uuid": "3d823fb0-e6bd-4ee2-8e1d-0da720473b4c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "631599b3-38cf-4095-a08c-6b9b61281389", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122345-O-RU-12234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "22d1c72b-bae2-4505-8082-92bd40ac8a44", + "node-edge-point-uuid": "7c51ddcc-f9e4-4f9d-b0e6-2a81eb6c5314" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4e1ef1f3-8c35-42fc-aac6-55c38f71356d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122346-O-RU-12234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8ded6acb-0bbb-43e9-9a74-90c681689392", + "node-edge-point-uuid": "0c0ebdf5-5400-4766-80ca-05b2a3507be1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5270918f-440f-44b7-80f3-fb370e61c945", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122347-O-RU-12234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1d3cef7c-b2a4-441c-88b5-ae811242b37b", + "node-edge-point-uuid": "2c64426c-2afe-44eb-bed7-2e086c35a95f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ca101eee-97cc-43cd-802d-46184cec3e4e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122348-O-RU-12234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6e3516e7-c12b-4fd0-b551-ca4ab9490cd0", + "node-edge-point-uuid": "03f1e7f2-180e-4c34-a8d9-56679d5bd7fb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3188f1d5-05bc-4d92-80f3-5b6309c48b5b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-122349-O-RU-12234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1d3ab33-8cdc-4329-af7c-37fabe4c13e3", + "node-edge-point-uuid": "9cea8692-b814-4850-9dcf-540c3a345203" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79832b0e-c208-408c-8eed-d9ce8b7d0908", + "node-edge-point-uuid": "d8d6eaf7-0b93-4e27-80ea-84836e8746dd" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ab63b21a-83bb-428b-b523-78f34a48f6ad", + "name": [ + { + "value-name": "topology-link-name", + "value": "NEAR-RT-RIC-21-SMO-2" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4fb8f4b-d54f-45a5-838e-198f6a9d60e5", + "node-edge-point-uuid": "1d3f848e-ab34-4336-9f71-460c15261955" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8375461-06d0-43f6-9f2d-f15dfe4d2138", + "node-edge-point-uuid": "96b2519f-1414-4a2b-ba0c-dda4e48cba0b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6e4ec42b-e966-4a04-8dd9-62fe4cc0fb49", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-CU-UP-211-NEAR-RT-RIC-21" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8375461-06d0-43f6-9f2d-f15dfe4d2138", + "node-edge-point-uuid": "27ff5412-d6f6-4bdb-99d7-618ff210f762" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9f8910a7-dddb-4fb3-9654-8a98a6f9c808", + "node-edge-point-uuid": "582e11af-db74-457b-b44e-dc9179ad6601" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e75e750f-2262-423a-8dbc-21dd538cd709", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2111-O-CU-UP-211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9f8910a7-dddb-4fb3-9654-8a98a6f9c808", + "node-edge-point-uuid": "9522ff67-c075-4d09-8983-76cd62c86c35" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c7de8796-18f7-47f7-8e78-e2ca33336cb6", + "node-edge-point-uuid": "18275f5d-bc51-4c0c-b926-ee49704b6e8c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0a043245-f380-43c1-af0e-6fc4dbd28fc2", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21111-O-DU-2111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c7de8796-18f7-47f7-8e78-e2ca33336cb6", + "node-edge-point-uuid": "87751cad-a76d-4061-a2fa-2f6b938fb28b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "7c056f29-8a92-4eae-9a70-cff10e3fb01f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "dba9e476-a3bb-43fa-85af-18ec7f9f9415", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211111-O-RU-21111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8ff41967-ef7c-4cf0-aee6-473212c4bcb3", + "node-edge-point-uuid": "51818955-a1c4-4804-98d1-8b78156c8e0c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bb389f9f-fa15-48e5-90bb-b2702d29dfcb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211112-O-RU-21111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "07481b98-fc48-48bc-b99f-fc54881fc332", + "node-edge-point-uuid": "a1d96c2f-c9da-4e43-a2be-ec536dda99e2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2bab7f00-562d-435f-8c70-ba81a6da5965", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211113-O-RU-21111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "91d56826-7292-4464-afcb-35eb7c4a6a98", + "node-edge-point-uuid": "76b00f4e-b583-4997-b895-ccaf195d90a9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "11ced6e0-59eb-4b2f-8ebb-058db55a035c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211114-O-RU-21111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0a616c42-2e51-44e2-8652-9fcbec3095a8", + "node-edge-point-uuid": "ed1d6999-369e-4f41-b548-bbc003bbb09b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "558f7721-62a8-47bf-8ab9-214c12009ced", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211115-O-RU-21111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d5855acd-ddd0-41dc-8828-0b45bf9bce93", + "node-edge-point-uuid": "d65c39c6-c93a-464f-b906-92ab36f71ef7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "dbd5655c-7d9c-47f5-8d0b-92934aa38cc5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211116-O-RU-21111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dfa0885a-60e6-4f71-becd-7de66537d25e", + "node-edge-point-uuid": "27f10542-5c8e-4d74-8e70-f3a04ff4af01" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4f086897-9a3d-43a7-8f2d-01a813b24a99", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211117-O-RU-21111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "31ec8ba6-dd52-4a79-bdf1-bdb7b80a8948", + "node-edge-point-uuid": "66b77695-e642-437f-9520-0bf2960bc83a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "aa66d999-e9e2-407c-a4be-a7e38405d4a3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211118-O-RU-21111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a95daffb-c2c9-4aa3-90e3-48eb136d4339", + "node-edge-point-uuid": "15703dd5-2d94-48a1-8bff-387d09bc24fb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6da585a5-7af5-40d2-a4c3-078276ab68ef", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211119-O-RU-21111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18dfb7bc-09e3-40e1-98a5-68dc95bd3cbc", + "node-edge-point-uuid": "54588355-37af-4f0c-a3e8-27a5251eedd0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c772bde3-1a91-40da-bba4-4fa1aa5b6f66", + "node-edge-point-uuid": "1ad5dd5c-90e6-4dd3-9898-570a0b1ee92b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "732643d9-6944-450a-9f51-4dd957385b34", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21112-O-DU-2111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c7de8796-18f7-47f7-8e78-e2ca33336cb6", + "node-edge-point-uuid": "87751cad-a76d-4061-a2fa-2f6b938fb28b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "f99ffe64-e3ee-486d-9aa4-74acb7158de1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "18a360f3-9dff-4739-8af7-1f1c8817e66b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211121-O-RU-21112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f2915884-5ae2-4774-8fec-6ffed4112047", + "node-edge-point-uuid": "6935a1c5-0968-43ce-9d53-1ef00d2faf7c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "35c0b4b1-80c7-43af-ab07-b96ab2ac72f6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211122-O-RU-21112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5fd9635c-dce4-47a0-9823-bf1e84fea036", + "node-edge-point-uuid": "ad485ab6-85ee-4ef3-9ba9-bf0acae40c70" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e89ae4f2-bfd3-46ef-8346-3ec276d6f56a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211123-O-RU-21112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8d0064ad-5855-4812-b326-68ae2eb40786", + "node-edge-point-uuid": "d4667def-0733-4db3-9666-4db126236458" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cf86ed7b-0b99-42eb-8668-37cee3fa62a0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211124-O-RU-21112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "56eba852-580d-4df3-9db1-227c173dc8ee", + "node-edge-point-uuid": "d26d3560-9dd7-4706-a809-19816a70abb8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2a0821cf-d3ac-4454-a7d7-ff2635cbdacb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211125-O-RU-21112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "112f48df-cf06-436a-86ff-5df4f28c626e", + "node-edge-point-uuid": "aa9ccbcb-9c6b-4270-bd9b-2f3b60778c33" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1a4b31af-ecc5-489b-861f-6b37bb273711", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211126-O-RU-21112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8f046d31-a15e-4992-b911-a16266a60b51", + "node-edge-point-uuid": "756f4eea-41fc-44da-b00e-910c770f5ab2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6357d0a8-b5d5-46ad-9ac1-0884795e0bf2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211127-O-RU-21112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "02e777dc-08fb-40c7-a433-f03b3acc9c90", + "node-edge-point-uuid": "db80d534-d718-4caa-ae19-a4735a2d8542" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "25f9283a-b7d1-4eb0-8b06-66e11272ab51", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211128-O-RU-21112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a9226ff3-db76-41e2-9f48-b666db61f076", + "node-edge-point-uuid": "ba4dbcc0-29a6-4795-89b1-ad6e277299d0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7fc149d5-a0ba-4246-85ab-6cc6bfe6c4f6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211129-O-RU-21112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c631eef2-c41d-4df7-90a0-5b6d862e2b75", + "node-edge-point-uuid": "45c2ef4f-885f-42ea-893e-099e0c57bdf1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d334d859-91a0-4bbd-af1d-984b5912d256", + "node-edge-point-uuid": "37941d40-7438-4d79-b290-f67ad655f368" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d63cac52-703b-4308-a6db-1d3804779af9", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21113-O-DU-2111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c7de8796-18f7-47f7-8e78-e2ca33336cb6", + "node-edge-point-uuid": "87751cad-a76d-4061-a2fa-2f6b938fb28b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "f822195d-6d09-4e0d-9777-de651c58c474" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "23e2027f-7117-45b5-8088-76b803bd26ba", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211131-O-RU-21113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "69b4da8e-5d43-42e7-9565-2c3738932d6e", + "node-edge-point-uuid": "f405688a-8ded-4df1-94ff-95d409230287" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e54977fe-4884-4686-8065-281abf32ef3f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211132-O-RU-21113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8d840f8-57ee-4901-a068-1a0c53dbda41", + "node-edge-point-uuid": "d3d26fc7-3f6f-4a03-be4e-efe38fc9472a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5527ce58-6c7d-4b93-ba32-03c401854a2f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211133-O-RU-21113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f6db1dff-b28f-425b-977c-cb16877aa7a4", + "node-edge-point-uuid": "cf1692a0-1c81-4703-8d24-dba956b97305" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3e1b7096-9011-4e02-8663-78f21cf91cca", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211134-O-RU-21113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3af85e0a-60ba-4ba5-8fae-dfe85dace5de", + "node-edge-point-uuid": "405d1209-4de8-4ac2-8e07-02ae573637e3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4116ac7c-523f-40f6-aefc-f0ca469bf209", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211135-O-RU-21113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3d22169c-04bc-4ca0-9190-047cdf50a77e", + "node-edge-point-uuid": "dd999e2a-9c00-4867-9c23-556d46d07b4c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8e5b0c19-2f5c-4c27-a12f-4733343c7e3f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211136-O-RU-21113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d235d8fa-da8e-40c7-8ef6-4eaecd4ed9ee", + "node-edge-point-uuid": "452ad02a-5bca-4e45-968f-7a9cd0882614" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1a9fff94-cea6-4556-96c8-90fba4eb64ab", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211137-O-RU-21113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "87b2d3b2-412c-4cbb-9f66-4d20bc98bced", + "node-edge-point-uuid": "78075113-c408-4006-be3e-895bf45d1526" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "26bfe06a-acde-4df6-b62c-ed91e2faedb3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211138-O-RU-21113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1b6d0bf1-b0e1-4450-bfb7-faff14a9c3a2", + "node-edge-point-uuid": "c8131740-f668-4a8f-ae40-f36952d17d23" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c384722f-5986-4be5-8483-94c67f8d28a2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211139-O-RU-21113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff628fa0-ffdb-46c7-b9e0-79e68d2b1a67", + "node-edge-point-uuid": "a0c39647-5c87-45f8-b203-add395e97420" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1d8ae7e8-473b-4c2a-906b-fd878c51ebc0", + "node-edge-point-uuid": "6dbe554e-c90e-4d85-a48d-77a141b17995" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9dd62fa-3558-4668-8244-744df6c05da4", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21114-O-DU-2111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c7de8796-18f7-47f7-8e78-e2ca33336cb6", + "node-edge-point-uuid": "87751cad-a76d-4061-a2fa-2f6b938fb28b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "f3b0a39d-5138-4c8a-939d-cd354fc37035" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1c2cb122-6bf5-4be6-b992-b7c4b675c750", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211141-O-RU-21114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2d0bb9e3-f7ce-4180-bc25-25c4efb36ec9", + "node-edge-point-uuid": "90332bd9-849b-4d4f-9397-ed070422410a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4bdf88db-0771-4cc7-8399-8f57555f7635", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211142-O-RU-21114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5c87028a-c195-4190-abde-acd98afc4669", + "node-edge-point-uuid": "2ccd1abf-ceaf-4306-ac4c-da79ef6c1e0a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "91007db7-6f23-459a-87f9-1873e645c267", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211143-O-RU-21114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "71902cbb-c6b3-443a-87ef-a902e3952067", + "node-edge-point-uuid": "10080920-2ada-414c-a6a8-adbb1095154e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7cadf57f-6ec0-4c6b-a6c7-af548ca2578b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211144-O-RU-21114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b353bcc0-6763-48d2-89d8-b7fbfd2f1bdb", + "node-edge-point-uuid": "27050f2c-cb3b-4dc0-a5d5-b93649c45fc4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a582fe5b-5bf8-4278-a852-5a4bfe8ba6f0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211145-O-RU-21114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "15162c58-771c-4b93-b70a-9724a9d525b8", + "node-edge-point-uuid": "98cee68a-f4e2-4542-9c3b-195c495cd092" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3fff03e0-9e94-4f91-bee2-c371671e86bd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211146-O-RU-21114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9ed45340-647b-48df-89d7-b20359e73ca1", + "node-edge-point-uuid": "34e0ef99-d1de-444a-9dc4-1e0e8bd54ebd" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0d6ed719-f389-4ee4-8868-4f88251f4570", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211147-O-RU-21114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f63be49d-f2da-4cca-af41-29052190dc92", + "node-edge-point-uuid": "b961a8c7-7bf9-46fb-a0da-44a08529ee9e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "201a7f44-c40d-46e4-bc6f-5076680f119e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211148-O-RU-21114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7a040aa4-99c4-4e23-b94c-da0cb3cef77b", + "node-edge-point-uuid": "ece736a6-7c27-444c-9c12-cf8e0d4a895a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7252bd74-4583-4fb1-ab35-b455e341c022", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211149-O-RU-21114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa18da43-9952-431c-b5f7-717cd4b28780", + "node-edge-point-uuid": "583ce273-b308-4138-a736-42a8470ee5e2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "035cf6a6-5573-4965-b141-8da779f54529", + "node-edge-point-uuid": "e1770cdc-cd67-42f4-a677-3d3dbe5f866a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "18d2befb-c4f9-4146-9e19-5cf4f4a09d8d", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2112-O-CU-UP-211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9f8910a7-dddb-4fb3-9654-8a98a6f9c808", + "node-edge-point-uuid": "9522ff67-c075-4d09-8983-76cd62c86c35" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a349d719-8785-4244-93d6-fe7ab63cbf35", + "node-edge-point-uuid": "814413c0-3ca1-4cdf-9528-932a45285053" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fe08dd05-1733-441e-9b2d-3cdb56b4ed67", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21121-O-DU-2112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a349d719-8785-4244-93d6-fe7ab63cbf35", + "node-edge-point-uuid": "bbcc01b3-e8f3-4406-9cfb-194f858417be" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "da6edddf-ec69-4119-8049-b920143dd0be" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c3d39aee-9042-4172-b878-c1a35631c56a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211211-O-RU-21121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "df9edf91-1ed2-444b-a117-6c5edaa5c215", + "node-edge-point-uuid": "83d0e9b3-74a0-4a74-95a8-10b015a688d7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ca65df37-2b82-402b-a591-5a3f65a49d33", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211212-O-RU-21121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dcacfdfa-2e6c-46dc-a357-3d4a9678a6fa", + "node-edge-point-uuid": "1ab67775-fe26-4f67-aa28-d55e27ed236d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "70b4ba5d-7487-4de4-8d86-c4434b846372", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211213-O-RU-21121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a6c1abc5-3fae-4655-b13e-5b092b858ece", + "node-edge-point-uuid": "b3d3e2b2-ed15-4af8-9f46-118c971d29b8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ea2c4385-9752-4673-93a2-53eb68e3bae3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211214-O-RU-21121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "57d1ab6a-3942-43c9-bea9-90d1ce2d8666", + "node-edge-point-uuid": "8f397bec-cc93-4e4c-9fc5-ed4bdb6b8a54" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "09a876a0-d8fe-4456-a9f2-cc562e56c1fd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211215-O-RU-21121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f570c316-c905-469f-9f0a-e792c3d8a13b", + "node-edge-point-uuid": "5d24f198-a39e-451c-86ed-7c4dc6aa42e1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7da41414-9690-4189-93e8-31ead26c85fd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211216-O-RU-21121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c8eca2b1-e625-4fb4-a89a-1ed3cd0d7858", + "node-edge-point-uuid": "61b25021-f81f-4370-951b-21e2388f541f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2631152f-977d-4ca0-940c-54f0d8ea469a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211217-O-RU-21121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ddfb0b66-2a30-43cc-8ece-f955ad51a6dc", + "node-edge-point-uuid": "9c91c2d5-5df9-4de0-8ef7-2951d01a1682" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4d148154-9432-4dcf-959e-6798ae1949db", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211218-O-RU-21121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef9e564f-87f4-47e2-a97d-7d99109ffb17", + "node-edge-point-uuid": "41896078-9e80-464c-a674-744f5547d254" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b7a71348-ae57-4b24-a9b3-724dfc37e15d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211219-O-RU-21121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "67426172-6110-4903-b762-44190b8f380a", + "node-edge-point-uuid": "629f46a4-f8da-4ae9-adaf-9142895acc96" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ea62cc3c-4006-41c0-9491-2748d9563390", + "node-edge-point-uuid": "6b39779b-ee72-4f52-9cc9-10c7a16edd2f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2e240aa1-041c-4733-88fa-742fcd0286a4", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21122-O-DU-2112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a349d719-8785-4244-93d6-fe7ab63cbf35", + "node-edge-point-uuid": "bbcc01b3-e8f3-4406-9cfb-194f858417be" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "afc2cd23-167e-4b63-bab2-b898d40f1dc5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1cadfc94-dd2c-49c3-a30b-bced353c8d6b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211221-O-RU-21122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d864ac04-1d66-4fd7-ad5e-1d6fe9d8c2f6", + "node-edge-point-uuid": "5189ca2e-38b0-443b-bf7e-cdb0257c5316" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2a5858e5-b58e-4335-8e02-3fbaa5f4d0b9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211222-O-RU-21122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3bbe734f-2561-4862-8f6a-f2046fc442fb", + "node-edge-point-uuid": "9128125a-a2ac-4385-8eab-bd0d1f3cb696" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b2ed2269-26f7-428a-b8c9-0707cfa8c4cf", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211223-O-RU-21122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b52645e1-3d86-4497-a101-c647da29c005", + "node-edge-point-uuid": "f695e8b9-1c8f-4f0a-96ed-bca986436da9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "21c7ca1b-df7a-4be6-9590-9125fdc90a44", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211224-O-RU-21122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e43c7177-edfe-45f0-957d-2ab36c234d1c", + "node-edge-point-uuid": "803d5b8a-1764-412f-a26e-5117cd0e56b4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b62eb057-8e72-4c3d-bccb-54176244dcc4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211225-O-RU-21122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66a0acd3-1693-4532-a55a-a00abe748cb6", + "node-edge-point-uuid": "598ca6ee-9d38-4ecf-956e-5967cda1a668" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f818d537-4f60-4398-af0d-b496690d6c7d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211226-O-RU-21122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8e23dbbd-7ec6-4fd4-a4e3-9d65af8fc9c0", + "node-edge-point-uuid": "668db232-520f-4faf-b144-9cc0c548426c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "47c19b18-9f43-4bfd-8e18-f11ecbebe89a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211227-O-RU-21122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "93559594-7286-4b7b-80a9-1e292161a905", + "node-edge-point-uuid": "f1c0298b-6097-47cd-83c3-7c845c6b9ee4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5ca7189d-f032-4af3-8383-3493d5657fdc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211228-O-RU-21122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c31b54b2-84ec-4787-b8b4-10588724f922", + "node-edge-point-uuid": "f070fcbc-7033-4817-9982-00c2f71a2b75" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "00c5c188-56db-47f4-b9f5-71d2a866da1e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211229-O-RU-21122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29caad7e-9893-43ae-b408-a5eecd461ac3", + "node-edge-point-uuid": "4d57eb81-3984-4319-ad55-6f5a35a0a8f4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e033a890-30e5-4e93-9557-7782c0a401eb", + "node-edge-point-uuid": "60a02adc-25d6-4eac-83f0-0d19505c949c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7a71ccfb-103a-432b-aed7-4674ee375892", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21123-O-DU-2112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a349d719-8785-4244-93d6-fe7ab63cbf35", + "node-edge-point-uuid": "bbcc01b3-e8f3-4406-9cfb-194f858417be" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "d6335092-2ff8-4889-a7d1-ff74da7fed4c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c09f4a20-86e1-4c26-a12b-d1f059a52e45", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211231-O-RU-21123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "00bb27cc-4ae6-4aa6-b485-feafd27dd140", + "node-edge-point-uuid": "c35b5415-7f9c-4db6-9ddc-49c4810dc54d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9c5fa1cc-7595-4a0f-8e8c-f0233c41ff85", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211232-O-RU-21123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8e4c756a-cd56-4d4a-85a8-bcea5df494aa", + "node-edge-point-uuid": "bf0eb2b3-0150-431e-b4d1-6453f9deb2da" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d9b9c6d1-2baf-4b3e-89ac-f7612bfef42e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211233-O-RU-21123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c072728b-2b12-4947-acb6-9b34cdec31e6", + "node-edge-point-uuid": "a939656e-c0bf-455b-b0da-e9386972880a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c17b1951-498e-4a57-9017-7ac75ba3bb34", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211234-O-RU-21123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "76b0608e-3b25-49a5-bc20-f9d020ddaf60", + "node-edge-point-uuid": "1fe0df17-21ac-4170-9272-e2c6891f12f1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9da3e4da-da28-42cb-9018-2d28e040f206", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211235-O-RU-21123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "021b4ad0-d381-4eae-b209-25aed3d89e13", + "node-edge-point-uuid": "b3cbabc3-f6c3-4194-b894-5dd1c2da2e35" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3f4f4660-cf6b-4f08-822e-fedd09f4e69a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211236-O-RU-21123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4162a601-903c-4c18-a8f2-6b779d09dadc", + "node-edge-point-uuid": "8eaca99d-3441-44ea-8759-04a5ca4d5868" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bcad6f29-1636-4eaa-b5bb-7cc15c62dafe", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211237-O-RU-21123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d8168e7b-0970-40c8-9a89-e2cebdfe043e", + "node-edge-point-uuid": "93c55bd1-2533-436d-bb05-c94d33413843" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6322827c-ee67-4fda-862a-5019b95b2024", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211238-O-RU-21123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2bef48c7-a175-447b-94c6-72cc61dc3cef", + "node-edge-point-uuid": "5504bf93-95b9-4863-80b5-0bba70e1ad76" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "491797e6-4f5c-4d69-a8c5-cbb0c22a7f65", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211239-O-RU-21123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6afaf6d-2e87-4f19-a73b-2ee0692d0b7b", + "node-edge-point-uuid": "76d3e9c6-be24-48fa-a713-30bfd97d46ce" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9b707177-7cc6-4d95-bbe8-fd22580b794b", + "node-edge-point-uuid": "a6ca933f-68a8-445e-a0b4-26ad7a512083" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d205434b-a516-48a2-b1cb-b7394b91889a", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21124-O-DU-2112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a349d719-8785-4244-93d6-fe7ab63cbf35", + "node-edge-point-uuid": "bbcc01b3-e8f3-4406-9cfb-194f858417be" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "eff27572-e2a0-43a0-98c3-4e966433c269" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1a7db849-225e-46c5-b6de-13394dcef157", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211241-O-RU-21124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef47f7d6-1d06-49c5-88db-19238cc04a5e", + "node-edge-point-uuid": "06f773e3-2f5d-4f75-98a7-60c9f6c59c4d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a84952bf-32c5-4312-a8c3-519e5242368f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211242-O-RU-21124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "246f761d-1ada-4ed5-819f-7123cb324255", + "node-edge-point-uuid": "e822dd5e-bfb9-48ae-a860-781ff54180ef" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6ec0f5ad-6859-4402-bdc8-e568cd3ad17d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211243-O-RU-21124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b1901fa0-bfc6-4d51-8a09-0608de6ce626", + "node-edge-point-uuid": "86f1feb3-aa86-4077-b67f-f1e1f4f229a5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3ae3ed42-0182-488a-8601-f8d4966f96bd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211244-O-RU-21124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "21820bd8-e9e9-49a3-84fe-189909d56596", + "node-edge-point-uuid": "6e98be9a-e3c2-425d-8850-e57ba9c06bd1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "14d03c10-32a8-488f-b803-084667a1bd68", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211245-O-RU-21124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d4b553c4-5618-4c65-a405-8815ce8d6a59", + "node-edge-point-uuid": "24b1972d-c75b-4aa1-8c44-43eca7f52519" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5f46346b-6353-4356-a229-651132af29c1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211246-O-RU-21124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "87c6eb77-ee16-4b42-8c1f-b5d5fcde12b0", + "node-edge-point-uuid": "582bc91d-e6ed-4cbc-beb5-1e8dc807d1b8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "318f3775-b8bb-4463-bcf4-cd8757e98294", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211247-O-RU-21124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5ba1521e-2d2a-42c2-a713-adfb04af5522", + "node-edge-point-uuid": "77b8be06-aec0-4b07-ba90-7e6a27a6ecc6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d8a87e8d-7de0-44ab-9ced-0d869be57969", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211248-O-RU-21124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9bd6ad50-c2ad-4e04-b84e-d8ca8575a702", + "node-edge-point-uuid": "64acc004-d1bd-4b9c-a4c4-b5741d390730" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "80becfd0-8f1e-4fd9-bee4-9095626da347", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211249-O-RU-21124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "66f2dad5-66e7-4826-876f-2403ea5e8320", + "node-edge-point-uuid": "3c578209-0007-47db-a494-d8fa091b6cbe" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "229184df-6164-4577-8ec2-a5b64d3a1b28", + "node-edge-point-uuid": "be080c03-e718-41f0-b1a3-e5500b8896e4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6ea2fbbe-29a1-4b5c-841e-25e8811f67d3", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2113-O-CU-UP-211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9f8910a7-dddb-4fb3-9654-8a98a6f9c808", + "node-edge-point-uuid": "9522ff67-c075-4d09-8983-76cd62c86c35" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "31351e2e-ce67-4268-904d-087f8aac6889", + "node-edge-point-uuid": "11d2b80e-d4bc-46c0-9f98-36044e8fcce5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7a347d86-5f03-4a46-b205-27904196567c", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21131-O-DU-2113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "31351e2e-ce67-4268-904d-087f8aac6889", + "node-edge-point-uuid": "2e69837e-ac20-4dcb-bd15-97bef66c1edc" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "0d8bf402-a6ae-4b84-bda3-f0bd84bd8c59" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c7c4b20c-2dad-47c0-aa3e-542a8bba6898", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211311-O-RU-21131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "63a90f82-242d-42eb-80e1-94d96889425a", + "node-edge-point-uuid": "ed6f873d-8fe1-4e5b-a128-d76ee32f15ba" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "44f20efd-72ce-42df-81bc-ed1bf70d3eb7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211312-O-RU-21131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "03d8bc49-b816-4353-8a90-b890d1bcf233", + "node-edge-point-uuid": "8f116ef3-5246-4a5e-a06e-a503f716f7c3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7a0c425c-a034-4745-a9b8-38c8b93c8340", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211313-O-RU-21131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a2aff9bb-c5c8-462e-b290-234b1bbe24ee", + "node-edge-point-uuid": "be92556a-e778-40e0-aa4e-1cbb9c258f49" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9436271c-0896-47c8-b328-253871667863", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211314-O-RU-21131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d6893cee-3baa-48a5-b711-5b3eee541db8", + "node-edge-point-uuid": "ada95eb9-1ea3-440b-b1d1-c0df373174c4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1c74c367-85bd-4c2d-91be-ac49d1ab1ec3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211315-O-RU-21131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6191a587-4447-4289-8ef6-73bf32890f69", + "node-edge-point-uuid": "e394a91c-845a-4453-a709-b01e14e90fb6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a7f1af10-c252-4024-a29d-c5995a446bbd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211316-O-RU-21131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e35a6fc5-c32f-45e2-8a42-512c0979c826", + "node-edge-point-uuid": "3572517d-ad31-4625-ac4b-507cff611eb4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2b9cbc14-664a-4b75-b4d0-46731b99348c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211317-O-RU-21131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "620fa665-14c3-4427-a6c4-bf4f1881b72e", + "node-edge-point-uuid": "09499569-ea62-4de7-96df-873e46f87910" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "672036f4-6100-4553-825c-5dd7d0980412", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211318-O-RU-21131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a5b507b1-ca14-4fcb-a506-97d5a497c712", + "node-edge-point-uuid": "fcaf8280-54a0-4cbc-8dd8-19ba0b46bc8a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "338a44a4-b41b-417d-b1e8-cd651ce816fc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211319-O-RU-21131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "13f5e773-a7c6-4d36-bf8d-55098ea292e9", + "node-edge-point-uuid": "93312bbe-da74-4aef-8fee-f22e2f609512" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8d5cf156-ffb7-4ac2-8238-ebbfa4831c53", + "node-edge-point-uuid": "64f8ef4d-9538-4f7f-a6ec-015ca549316b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3f3c370f-4ef8-4a08-b895-2f465985adac", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21132-O-DU-2113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "31351e2e-ce67-4268-904d-087f8aac6889", + "node-edge-point-uuid": "2e69837e-ac20-4dcb-bd15-97bef66c1edc" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "4cc219ee-0f09-4740-a393-e29de700dce9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a77b5f5e-646e-4e99-8c6a-f946f6a7b622", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211321-O-RU-21132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f0d79b68-2291-48e7-88f8-53079e8d9983", + "node-edge-point-uuid": "71c7284b-2b76-4b63-8582-50a50f7ac53f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c2d36c3e-257d-4af5-aa79-7c6fd9693163", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211322-O-RU-21132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5847b6d6-3a46-4e09-8129-2d606d8867ad", + "node-edge-point-uuid": "202cd1ad-8038-4bbf-9f64-d0c3b59d2a40" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a8587779-0b10-4166-8e3c-dac6974968c0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211323-O-RU-21132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e6ea1f4-6603-4223-9a14-8e8ca41c0afa", + "node-edge-point-uuid": "efa2dc74-c4ee-40aa-b581-e2630b4cff26" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d2522558-1003-4bd9-86f8-26780b7546f3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211324-O-RU-21132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f6c600d5-0406-4fc8-b108-162878a5894d", + "node-edge-point-uuid": "826ae20c-04e3-4008-a33d-896a47404c2b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c9b11d3b-b006-4194-9817-544fb9675676", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211325-O-RU-21132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0ece0e14-ef49-4dc6-a9c2-01f8485eb6be", + "node-edge-point-uuid": "59f3e870-3a10-40e1-8a25-ceb52c619502" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6fd6c6a8-3bb9-4fd5-9364-66a46e46aca5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211326-O-RU-21132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c82fbd65-c3f5-4f31-b5af-1b3ab057dcae", + "node-edge-point-uuid": "3eef55f0-57b0-406f-a806-5743df12e67d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2878e5d2-73f4-45da-8ee5-7cc287488dee", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211327-O-RU-21132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d2a7be2a-7b58-4de9-bd39-cb6b3f87b6f2", + "node-edge-point-uuid": "95200175-f2c5-4578-85e5-63b222423815" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "da968f02-6644-4110-adea-7efdddf7ff95", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211328-O-RU-21132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fac91e77-755a-4948-8987-7796717ad833", + "node-edge-point-uuid": "8d5b58b6-22ed-48a6-8e8f-910ba8a79706" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2a03f58d-b936-468a-a2a5-e63359584643", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211329-O-RU-21132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70570c8c-ed23-4afd-a550-45cd7cfe8eab", + "node-edge-point-uuid": "567ed113-4860-4724-8419-4544f306fcaa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6c10692-979e-4d95-b9e0-03eca0dc1dd3", + "node-edge-point-uuid": "65d233c8-20c8-4361-b3d0-32e5dede8add" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bbef3f67-be24-4d61-95e1-9bef749fff33", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21133-O-DU-2113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "31351e2e-ce67-4268-904d-087f8aac6889", + "node-edge-point-uuid": "2e69837e-ac20-4dcb-bd15-97bef66c1edc" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a4d93bf8-8742-4543-9d6e-cce9d77cd544" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3fe1ba07-317b-4363-a8f7-23a478a31099", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211331-O-RU-21133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "21c5c289-d4d0-4d4c-abdd-32bc532ad02b", + "node-edge-point-uuid": "d729b804-7cdc-4550-9f28-35c23c39173f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "de1c7111-bc69-4e54-9777-d0fdfa0e0cbd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211332-O-RU-21133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d2a71f66-7ebd-4618-bce9-321eec5ad9b3", + "node-edge-point-uuid": "a3c10650-6c3f-4e27-8648-557ba3068c2d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "516eff8f-1ae0-4211-919d-a81c6efd00c4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211333-O-RU-21133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99b1e88c-a442-4389-872c-5e5cb2118c8d", + "node-edge-point-uuid": "a45a9d5d-64c2-42d9-af7a-bafd64393e08" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7854175e-f624-456a-a813-ddbe56570d64", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211334-O-RU-21133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "da02078d-55ff-4478-ba50-316be51e2004", + "node-edge-point-uuid": "d18529c2-b8af-4073-b316-d1a9072660ad" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "776978db-fef9-40c5-abe3-3e9f9196c163", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211335-O-RU-21133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "897b339a-588e-4ff3-81f9-fed7fbfe9f68", + "node-edge-point-uuid": "82257411-8cc2-4a0b-8875-3b5d8a3ddbff" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d1cfb5b8-dbe0-4076-bccf-bccf802ec53f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211336-O-RU-21133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "afb71026-3029-4009-86c1-c2164989d5ea", + "node-edge-point-uuid": "6c42a934-2f9c-4308-963d-201a63b0a05b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "064a7e73-9ba0-42bd-8a6d-b4d8039f6388", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211337-O-RU-21133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "48760db9-4804-4897-8566-df3950211d08", + "node-edge-point-uuid": "2d0a7884-989c-4616-a924-87f41f215556" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d0f2436a-11f3-43e2-a1d3-89a16b4253d5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211338-O-RU-21133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4eb67f60-ebd4-4e17-906c-e8a679d250f0", + "node-edge-point-uuid": "b5259b13-e342-4741-affe-7ecd4d2ea3fe" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "adfdf4e5-3339-4adf-8c48-4eb2a18f071c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211339-O-RU-21133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2a1749c3-6852-4dfb-b988-4dc0453145d3", + "node-edge-point-uuid": "a1315674-f029-42ce-ba03-9194c7df5a5d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a5439c0c-ebdb-4b55-a531-3433033454ee", + "node-edge-point-uuid": "7c643d90-6bc3-4feb-9931-b88e67325c69" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a0ce558d-b403-435a-8035-78b5cfb773f4", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21134-O-DU-2113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "31351e2e-ce67-4268-904d-087f8aac6889", + "node-edge-point-uuid": "2e69837e-ac20-4dcb-bd15-97bef66c1edc" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "e8383994-88e2-438d-a42c-cac0e81b80ee" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "caeb404e-d3e5-4f00-bc78-47a923a5d21e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211341-O-RU-21134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a0d9eee2-62af-448b-9f8a-22ba514aebb3", + "node-edge-point-uuid": "4654140c-ec64-40ef-ab3e-4f4788c5761b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0f111fca-eeba-45b9-8c15-c30a9dbfdaa4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211342-O-RU-21134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e08343d2-0ac1-43d3-9d4d-0549edc726df", + "node-edge-point-uuid": "444b8a30-8579-4f7e-94f3-9765292bcf40" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fb606ad0-3efa-4728-9f8e-98e34beaae64", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211343-O-RU-21134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c8bd61fa-6983-4f8f-9e9a-680acefc1ba6", + "node-edge-point-uuid": "a09f71af-a756-456b-96d0-5fc0d0fc2731" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3430a19d-76f6-4cee-8505-d7bc4ee5d3d6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211344-O-RU-21134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "926a470a-2091-47ef-90b5-6dce1af48a22", + "node-edge-point-uuid": "03856d61-063a-48b1-8ae7-070440faaf50" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "650b2348-8e4c-481d-95a1-436cfcc5d851", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211345-O-RU-21134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4de3e145-a92e-40fc-aa81-46bebb8994d1", + "node-edge-point-uuid": "054704c3-885c-42fb-ad75-42501361199c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a0e613b8-a253-4a71-b7f3-80c1e0f04563", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211346-O-RU-21134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f75da132-5239-41a2-98b3-72f2834b02fc", + "node-edge-point-uuid": "713185f4-feac-4c82-bcca-ba99b92a4bf5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f2ab947f-b6dd-4fda-807c-144ab1ddb748", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211347-O-RU-21134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "83a22cfd-7906-4452-baf2-06dc2d580ca5", + "node-edge-point-uuid": "4121bef2-d3ee-48a7-80e8-b5c73d8dce37" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5c0d3a33-9bad-4dde-90dc-890c29d988b9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211348-O-RU-21134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "798ac582-e89f-4286-92aa-02b87dcb77af", + "node-edge-point-uuid": "941c5ccc-7039-4995-8a42-3f99a8846a11" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "df365162-ff8d-4811-b817-44a41739edf4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-211349-O-RU-21134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c9f4e9a-0e38-405c-983b-6c1011f14cda", + "node-edge-point-uuid": "27626844-1668-4793-8e24-47e64eed200f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9e207317-62c9-404d-bba8-d8584216410a", + "node-edge-point-uuid": "2604578b-e25e-42cf-b3b5-11ef73d758e2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fdd4e28e-47a6-4580-951d-a0db76674a8a", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-CU-UP-212-NEAR-RT-RIC-21" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8375461-06d0-43f6-9f2d-f15dfe4d2138", + "node-edge-point-uuid": "27ff5412-d6f6-4bdb-99d7-618ff210f762" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b80a3581-3457-4149-8407-49550e276816", + "node-edge-point-uuid": "4174f546-5cde-45fa-8e65-60faa0b07091" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7a5fec28-1004-492d-946b-7fc459b81f02", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2121-O-CU-UP-212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b80a3581-3457-4149-8407-49550e276816", + "node-edge-point-uuid": "af7c7fef-42e1-4573-84b5-4c7fae382bc7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "08a24045-c59d-4a58-a4bd-fb8c95408c0a", + "node-edge-point-uuid": "8565b3b4-8d7c-4e52-ba6a-c450a19cc2bb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "68d683bc-b71c-4e70-b8d9-de59b98c7688", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21211-O-DU-2121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "08a24045-c59d-4a58-a4bd-fb8c95408c0a", + "node-edge-point-uuid": "5240679c-3e94-4602-9360-e2a924a1b3fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b8861b38-e22a-4c5c-88b4-fd8f09409f80" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8af81974-c552-4b9b-a946-9171603d89a2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212111-O-RU-21211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d81a10d8-d545-44dd-90a5-7e86c36a9fd0", + "node-edge-point-uuid": "adb7de62-62b1-4b6e-8866-0a54a18708bc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "53632d35-e0d7-4c8b-99c8-f4ee24bd6989", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212112-O-RU-21211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e774e54a-53ab-4525-963b-29b3d372dbd1", + "node-edge-point-uuid": "5bd8fdac-937c-406a-a678-d577c8dc8ee6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f74ade68-e743-461c-a5f1-60d3681c2431", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212113-O-RU-21211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "41067721-66c0-4e2d-b97c-c257f56bb7c9", + "node-edge-point-uuid": "69930fea-500c-4eea-b59c-f5a7c4849fe8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "09b33c7e-ab57-4d88-be50-0debb64f4813", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212114-O-RU-21211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c1a547a-1b77-4248-b2c3-ede45456ac1b", + "node-edge-point-uuid": "c29abb2f-15c2-45a2-b95d-178ad3ef2e5d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8862f994-07f6-41ca-af32-c446dafa9ecd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212115-O-RU-21211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "907d1aa7-a5d3-471f-9e47-7358bd231d27", + "node-edge-point-uuid": "2ed9eb30-9ae0-4929-ab7e-39a0014cf272" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c1b4cc59-9bb1-4aa7-950e-817da33021dc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212116-O-RU-21211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a9fb6c5-8777-46d1-89b0-e3f07687b693", + "node-edge-point-uuid": "6e498a0d-8c2d-40ad-ad91-38df26ebdfd4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a206bc9d-167b-4cfc-8705-0add819d5fc7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212117-O-RU-21211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "199607eb-04bd-434e-a0bd-7a20808701d5", + "node-edge-point-uuid": "3ce2322e-cf58-44c3-8abc-85b914acb3f8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "55fd21c3-fead-4781-95f2-fb8e8d5ae779", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212118-O-RU-21211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "04690da5-43f7-4278-b540-0a7c12e63d1b", + "node-edge-point-uuid": "b2b6ba6d-905a-408f-b91f-2a407a8fc6fc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8ba0d28f-8483-467c-afe2-5514242c52e2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212119-O-RU-21211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2fe5878f-b100-41a5-9670-acc363a0bd9b", + "node-edge-point-uuid": "b33910c1-7fd9-404f-8257-5daacee3281d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9b26495f-5c23-43b2-8a84-8d7cd8ca8c09", + "node-edge-point-uuid": "4db30cb4-fda2-4b35-b4f2-3fd0574519d9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6250081f-9f31-4fab-8b89-9e7ce36fd304", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21212-O-DU-2121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "08a24045-c59d-4a58-a4bd-fb8c95408c0a", + "node-edge-point-uuid": "5240679c-3e94-4602-9360-e2a924a1b3fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "1e5b5c3f-16a9-4c3c-ad74-d6a25b5f51cb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7ec154ba-b4fd-4a67-9efc-8c8e932184ff", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212121-O-RU-21212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "63aefb97-0129-4e42-afa9-5594da32b6ec", + "node-edge-point-uuid": "771ff675-a537-4bfe-95fe-bb50e54bf2fa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e13b1402-c82f-43c5-810d-f617113095c3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212122-O-RU-21212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27e116a7-7581-4ae5-a510-b79aa7a80667", + "node-edge-point-uuid": "ea30a30b-b320-486c-956b-b9811fba5af4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6b3ab53e-02a7-48cc-87c8-6c8a302576ae", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212123-O-RU-21212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a75490b-577b-4808-a0e4-3eb700daeede", + "node-edge-point-uuid": "330f41b7-d9fc-47c0-ad41-ab3f859203b7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ea067775-d433-4b86-aba6-82680646b117", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212124-O-RU-21212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "725cfa4b-0aca-4ae6-b406-2a8f54e8767a", + "node-edge-point-uuid": "2b89cc02-35ae-434e-928c-824218642aea" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cf5cc644-7858-4266-b3ee-ccc52d3b39f4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212125-O-RU-21212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9d2b6d56-19b3-4d97-ab55-5e5f7b1dd52d", + "node-edge-point-uuid": "11d0af3a-f6ad-4f1f-8e12-619a3295dd56" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a6f79171-4f54-4480-92e6-6e5ebb7c42fb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212126-O-RU-21212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "15134b18-c1ac-404b-8039-e63c7f13e5d2", + "node-edge-point-uuid": "8a573470-7d6f-40c6-8d9b-a0ec09a7b118" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ae5ac71a-bdd7-4e59-bece-9e02f5fa8a95", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212127-O-RU-21212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "10fee77d-bd75-4fbf-b12f-0a3c0d41e090", + "node-edge-point-uuid": "1334fcd4-0857-4f43-91d8-948fccce9f94" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c5d86726-9afa-451a-af4d-c85b2ca806b5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212128-O-RU-21212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "953963de-f2ac-418e-a5bf-8a97e0153791", + "node-edge-point-uuid": "8ff51441-d27e-4e56-8309-1f8afe87c0b6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "efcbd032-9801-44ea-b619-5e0986b77177", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212129-O-RU-21212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ec9c1c9-b182-456a-bbf1-7bf3ae3cce67", + "node-edge-point-uuid": "b2e21df4-ebd2-4323-98e1-c95ab0a7d147" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7fb9e6d8-f9a5-45e0-acca-910674ff5d58", + "node-edge-point-uuid": "9df104cf-f485-4b98-9d70-e84f0d113b72" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d45dc71d-1c12-43cc-a4b2-a5606076f585", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21213-O-DU-2121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "08a24045-c59d-4a58-a4bd-fb8c95408c0a", + "node-edge-point-uuid": "5240679c-3e94-4602-9360-e2a924a1b3fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "ed7af4dc-53b7-485d-9f0d-61b5d091f356" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "799b9095-2c6c-4ef5-9fde-bfe81bda359b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212131-O-RU-21213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dcda6aad-939d-4beb-a4c6-380862bd5f23", + "node-edge-point-uuid": "8f193f56-a680-440b-afde-11ebfe2ba97e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2d73148e-fcd9-44ac-aa73-d497f91e8abc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212132-O-RU-21213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f11af9f4-3222-4026-bfd8-b6220e594957", + "node-edge-point-uuid": "acdd8a02-0229-4c27-b153-96ee427d6b02" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "71ce51b7-bee4-45fa-a4f0-58eb77fbc6cc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212133-O-RU-21213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "52074485-198d-4bca-96b5-4e197e5c037f", + "node-edge-point-uuid": "7712243b-d042-4901-bfac-9441ffdfa23c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8f08d263-ee2f-4556-bca3-e721357324f0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212134-O-RU-21213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5ac982a7-59d6-4624-b183-6710b45a342a", + "node-edge-point-uuid": "3b326536-4683-443b-ae95-9d3f6b0b4725" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "01daec6d-e824-4aab-9910-66fd68e366b5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212135-O-RU-21213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29d43056-6806-45ea-a831-18310517b907", + "node-edge-point-uuid": "0d891b27-b225-437d-bb1f-c25313f33836" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "289db34c-40c6-4289-bfce-325f8f241fd5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212136-O-RU-21213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6a67ce38-80e6-472a-93a5-410da6942115", + "node-edge-point-uuid": "c5a2224d-d072-4ea5-94ff-34109a3ae10b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "210be4b6-1548-4c32-b2fa-da1a24538ca5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212137-O-RU-21213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "055cc5cf-0a96-42b3-af69-e85afdfa1eb9", + "node-edge-point-uuid": "f4351103-4f6e-4939-abc0-6f4bb6531a4b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0da5892f-9545-43ec-b31c-63df9c364b4a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212138-O-RU-21213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3ce1602f-8246-4242-81cc-d44f813a3652", + "node-edge-point-uuid": "86c7c2ac-d86a-4884-8418-1dd61260839f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cac81001-e3b2-4fca-b196-69710eefc883", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212139-O-RU-21213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b5371446-c7c9-4fdc-b39f-b48657edac5c", + "node-edge-point-uuid": "7c477dc9-f0b6-4d98-8d3b-1b0af8da451d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1f67c012-6a63-488b-88df-9bd61a46eada", + "node-edge-point-uuid": "2ec3cc5c-c493-4d6e-aa8a-642f74842200" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0cc6fb6c-045e-4ef8-ba2c-4eca348ac5d5", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21214-O-DU-2121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "08a24045-c59d-4a58-a4bd-fb8c95408c0a", + "node-edge-point-uuid": "5240679c-3e94-4602-9360-e2a924a1b3fa" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "ac8c8186-b6ee-4846-9cd6-3ee3f9d12855" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2b18c84d-2268-48ee-9d73-8ef9845c99ad", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212141-O-RU-21214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f5a78043-6fac-4e73-b0d0-ab3118f76517", + "node-edge-point-uuid": "8dbb9094-927f-4ca7-8102-9b5e2d00373c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "542eabf5-8a67-48e2-bd70-560a44c943c0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212142-O-RU-21214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4a76835b-cc2e-4969-a9cd-fa171ba42c08", + "node-edge-point-uuid": "8c754b34-a0de-47ce-8c3c-667837428fb2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "22ebe61b-c314-4886-bc6c-3ba1b447eec5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212143-O-RU-21214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7d549e07-5f1a-4950-a9cf-e52c8612abfa", + "node-edge-point-uuid": "51a54be4-796b-4c4f-a5da-a1782e1baaa2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3715009a-3f22-4204-9ee7-5c7d82d61027", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212144-O-RU-21214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "085b4075-e88e-419f-9da5-b87185c31a30", + "node-edge-point-uuid": "48b407ff-0729-4bcc-b582-d3de8d6662f5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b7479a15-f716-411b-9490-094c53f66689", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212145-O-RU-21214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ea2ed462-7bad-4984-82cf-01b0937849e0", + "node-edge-point-uuid": "b18e2b5f-c19f-4b9e-b8fe-a731a96dd83f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1a38f6fc-911d-4dcc-8a6f-0113bd831de8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212146-O-RU-21214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "34797c57-a407-4718-b8aa-5e70920ae627", + "node-edge-point-uuid": "750b1bb2-9ed0-4a98-b459-db8a859c630d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "26fe2493-4ea2-4a0c-b69d-33a19df77f32", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212147-O-RU-21214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "255d2aad-707d-46af-ad8d-9756b371e854", + "node-edge-point-uuid": "829ccfa1-fca0-41a8-a605-6d1e5ddd330d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ee819baa-0f29-4c39-a571-ff42e229f464", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212148-O-RU-21214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4301a0d2-a450-4aec-b5e5-2d3cc8e13e8f", + "node-edge-point-uuid": "e2b20395-0a33-4585-b4c4-4e95222138bb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e541b6be-cd83-47b6-b6a3-31ed57b48720", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212149-O-RU-21214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "088152b5-c5fe-4084-8269-27e8f2489c2a", + "node-edge-point-uuid": "402f16a7-e0fe-42d4-959a-cbe9ef1b745e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "117b642e-c595-4f02-8644-348da6784dfb", + "node-edge-point-uuid": "ca6b4ae2-44dd-4b3a-8879-d81a41f09037" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b991cadb-edc6-4cab-a15d-421ef8f00a3b", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2122-O-CU-UP-212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b80a3581-3457-4149-8407-49550e276816", + "node-edge-point-uuid": "af7c7fef-42e1-4573-84b5-4c7fae382bc7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ba1f056e-e554-4727-89a6-6de7e0081354", + "node-edge-point-uuid": "5c17e761-6b51-4228-8159-d39087ea1343" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8f220a00-2cbb-4b7f-ad13-141b0c8ee245", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21221-O-DU-2122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ba1f056e-e554-4727-89a6-6de7e0081354", + "node-edge-point-uuid": "750c264e-e870-4277-84f0-fcd363b9fb17" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "1a3f8526-c210-4876-b32f-d44c425d77a4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b4d74538-58c6-495e-bd07-e0cbcca436a8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212211-O-RU-21221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "751b8f63-f9db-4472-bbae-773ca22e3926", + "node-edge-point-uuid": "cbaa80db-bbd0-4448-8ecc-da0c557620d0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9488be0b-71c8-4a27-b0aa-5852c6cee8d0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212212-O-RU-21221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ae9eeb2a-b7e6-442a-b999-0f2441047c6a", + "node-edge-point-uuid": "92dc8ea8-22ba-408b-803f-95be2e7fe143" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "11a22946-9fbf-47ad-a1e7-6163fa6d08ce", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212213-O-RU-21221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bb172cd5-1a2c-4351-a424-a7c5d748ccde", + "node-edge-point-uuid": "a4b451b7-ab06-4077-a1f5-b2775f7cb824" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "170b9e7b-e610-4314-9c79-962fd4dffc2f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212214-O-RU-21221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4dfa4a6f-ab8d-4f15-b704-b071fb9beee2", + "node-edge-point-uuid": "863ddf8b-4392-4269-be5a-f9e98b1a51fc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d653bf0e-0547-4c71-88df-99b81a4a3eb0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212215-O-RU-21221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "09bc43fc-4821-45cd-9202-2f7a8b18a56f", + "node-edge-point-uuid": "11197110-234b-445a-9e21-20cf64039998" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e74e2b3c-bb6c-412a-8b61-a222b4b250a9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212216-O-RU-21221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "62b9fed0-1a73-4641-adbe-3b385ea64498", + "node-edge-point-uuid": "eea9ecb6-30c8-4377-8aea-6fc2aac1a557" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9a832178-2ac6-4fd9-b049-d70a9c6426a5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212217-O-RU-21221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9b879737-1ad3-4926-a42a-3a448641628e", + "node-edge-point-uuid": "48bb5a5e-1478-4121-b729-1caa7bd1f77b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "04d254bf-0bf9-4a8f-b368-81d20f2c1ee0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212218-O-RU-21221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "018834cb-9a75-4671-aba0-fac13b203588", + "node-edge-point-uuid": "6763d7da-afb1-49f2-bf8f-978f075660ea" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "15b2e8c9-2ae5-43b9-aaec-4fee1652a7fe", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212219-O-RU-21221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9143efb9-f1f7-4ae1-a4ed-d5e63e9bacc9", + "node-edge-point-uuid": "70e722b4-dfee-4cef-b6aa-7f30c76aba2e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5b42aa99-3d01-47e5-a9c4-629428da803b", + "node-edge-point-uuid": "ba4c6e11-91ab-4d47-bd9e-ae2a9007e23d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "01df053d-513a-49d9-849d-cc0758672708", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21222-O-DU-2122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ba1f056e-e554-4727-89a6-6de7e0081354", + "node-edge-point-uuid": "750c264e-e870-4277-84f0-fcd363b9fb17" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "da23b0a3-2a58-46d7-a050-67e78b4684d8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e39db92d-e1fb-4a6d-9c28-4f20bf118a9c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212221-O-RU-21222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7e4cfb52-4fcd-4cec-9c59-546486d6b4ff", + "node-edge-point-uuid": "15b0cc2b-29c8-4c20-a127-59354037de8d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "20313d1f-24cf-43e8-91aa-9e9ea4017a96", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212222-O-RU-21222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ad025b97-11d2-4a94-8a9e-a22dd2f3ff0b", + "node-edge-point-uuid": "940e0fdf-2eee-4077-aea8-59a6a5c0b16d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "70f2395d-e453-4c1c-b0c0-883c537a84b6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212223-O-RU-21222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "176d398b-0cb1-4d0d-91f0-f96ff3e43958", + "node-edge-point-uuid": "4db85cbe-4951-40b7-af72-b78e1d625122" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "496719ad-33ec-46b3-a039-fdd0bf5abec4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212224-O-RU-21222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6c1e6ae7-2b63-4a6f-a778-4e910c3806c5", + "node-edge-point-uuid": "caf00f54-8424-4ae6-afa8-a0f74aa86918" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4e6b86b0-d87b-4a59-9f69-3314e458e4c8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212225-O-RU-21222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3b8b2a5c-0964-4710-b08d-4458a86ce506", + "node-edge-point-uuid": "4015ff33-30d5-414b-8716-a391d96c7874" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "35211212-52d7-4f26-a9c4-af4a0a5d0192", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212226-O-RU-21222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e1de2808-1297-456b-a277-c972a088785e", + "node-edge-point-uuid": "8f5c21e4-1b94-4aad-a15a-23ef8ea3ce25" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b2d4458e-6262-4f6b-9589-5b702b96350a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212227-O-RU-21222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aa4324f7-d46b-4b18-ae8d-b1840d4d9ccf", + "node-edge-point-uuid": "b3035423-dbc4-40eb-81fc-6855556789fa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "68b32a93-bdc1-46ca-a520-0248c30e67d6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212228-O-RU-21222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a3177698-80f9-4997-99cc-80424304d92f", + "node-edge-point-uuid": "5477498e-dfd0-417f-a606-fab0a39ccf98" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c0bd4896-af31-4d41-8e48-e6eaf4bbf7cc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212229-O-RU-21222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e371c125-76ea-48cf-954c-c74b48d2ebe6", + "node-edge-point-uuid": "663bfdf6-a479-490d-8f8c-1d3fc9084fae" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9146402d-4ef3-4455-8cdd-621d7b51a976", + "node-edge-point-uuid": "7eaf4b9e-3310-49e8-bca3-b2d680cf8e0d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a63d0b47-9324-4ca6-b5ab-3c493a3e683d", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21223-O-DU-2122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ba1f056e-e554-4727-89a6-6de7e0081354", + "node-edge-point-uuid": "750c264e-e870-4277-84f0-fcd363b9fb17" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "5a5ad892-b8d7-413e-b515-6cc5e2e3ebfe" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2d10d5f7-3e40-4500-aaf0-b4849ca5897d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212231-O-RU-21223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "de85493d-c055-4376-bd57-389ed5f248e7", + "node-edge-point-uuid": "b5f3ccb2-d6c5-4831-b715-c80a2e849215" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "30cdde06-17ba-483b-b9e3-fcc5bd1e2db8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212232-O-RU-21223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bcfe2daf-f279-442b-840d-2da40011323e", + "node-edge-point-uuid": "781c8f05-2454-4ec6-b890-878f7017101a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c2741929-c636-47e2-ad99-d8d091f3f971", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212233-O-RU-21223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f9935111-ef06-4719-adf7-2d16037f258e", + "node-edge-point-uuid": "dc5f13dc-f1d0-4121-a904-5d83a7d5e758" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "81161d1b-6760-49cb-a236-9970f31782bf", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212234-O-RU-21223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ab8f2b59-47e5-4699-b3fd-3b042aa1388d", + "node-edge-point-uuid": "2d034dc2-a3cd-40d3-baea-6fcf3e4238fc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e0e308ae-e6bf-480b-b6f8-ebfc8e03a830", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212235-O-RU-21223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d4b7d457-173e-4033-bac8-2ef6e65c38cb", + "node-edge-point-uuid": "c7adc80c-b079-4343-a407-f639dfa44a48" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "37601f3e-36e4-4db5-97ec-d4b690b3655c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212236-O-RU-21223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a5bd6e9-e956-4495-b173-b654db60527a", + "node-edge-point-uuid": "01ae92da-0c47-4b1f-9991-82ca718d414c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "dbdf3687-ce96-4e0c-8a26-5d8323083010", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212237-O-RU-21223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a66e15f9-9e1e-4e2b-9d9f-ce59a4678a87", + "node-edge-point-uuid": "745db41f-f526-4b90-8e2c-5a5fba5f2850" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0616daa8-7d66-434f-adfc-d09d03b06bf9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212238-O-RU-21223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e484814d-2899-41af-996a-bbdab2661464", + "node-edge-point-uuid": "14da438b-a60f-4b92-98f2-7e3e3ae3f177" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "84b0577d-27dd-48cd-bc00-f4a0d8a3b835", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212239-O-RU-21223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7da567ea-1aba-47c5-bf58-cae5434ac2d7", + "node-edge-point-uuid": "eeb650ae-753a-41a8-9496-47150c598e3e" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "16ac945c-b31b-4bcc-8fc0-a28c29a44385", + "node-edge-point-uuid": "ed980063-d592-4d26-953c-c6437911ef62" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f05b5795-adf3-42db-a5df-f44d55381e77", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21224-O-DU-2122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ba1f056e-e554-4727-89a6-6de7e0081354", + "node-edge-point-uuid": "750c264e-e870-4277-84f0-fcd363b9fb17" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "c19a3abb-d9d4-496c-badf-910f4388de6c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "76430f88-f42b-44ec-93c9-109927ad5b39", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212241-O-RU-21224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c62e637-ca68-492e-aeb0-bdac759084bd", + "node-edge-point-uuid": "e39f2af6-02eb-4c82-abf5-4d69cbab08a0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "37e2e617-7855-4df2-ade4-bae05274bb69", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212242-O-RU-21224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e96ce0a9-63a4-4fc8-ac2b-b622f6d40600", + "node-edge-point-uuid": "35c2fcef-4e69-4ac4-a3c8-7bb80856582a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0cc0fc63-e9a9-4d2a-bf3c-6e558c2aecaa", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212243-O-RU-21224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ff1ac63-897f-48b7-99ba-398c59e8eaa4", + "node-edge-point-uuid": "916d0874-785d-42ad-922d-e1b80b401262" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "70362b79-5904-4412-a436-bfb537d9f01a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212244-O-RU-21224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f91912b2-a8e2-413a-a888-ab5aeb5938cc", + "node-edge-point-uuid": "8e753e55-1f4e-43d6-b925-26975cdef071" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b78cc690-143b-443a-846f-17f429709b1f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212245-O-RU-21224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cb07f0e0-262b-42ff-95e6-d29e7619c8ca", + "node-edge-point-uuid": "ca3158fc-128b-48a5-ab2d-6b7760d4781e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "78b7d4dd-ac3e-4287-8fad-e2e3740ec31e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212246-O-RU-21224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8d62bdc8-a3fa-48ec-9f69-6bce765c4c7e", + "node-edge-point-uuid": "edb522cb-b9b4-4ff9-ba07-cccad1b39b73" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9e80ebd2-6be4-4da1-8048-26dae38d9d62", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212247-O-RU-21224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27a9ae3a-c1a7-47d4-b71f-602fd4bb3a42", + "node-edge-point-uuid": "4497b2d3-944a-4706-b3d3-ee0687284c1b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e4889838-907c-4fb8-94af-f83068c2229c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212248-O-RU-21224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fdaf9b19-45b5-4924-ae05-15bcc2332664", + "node-edge-point-uuid": "2a7b6d15-aeec-4464-aedb-a8eb0008369c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c5548279-04a3-49f4-ad85-c8f9fbb9d571", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212249-O-RU-21224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ed613328-8282-4ad4-b7f6-bdd072bd2bfc", + "node-edge-point-uuid": "59116f63-3ff2-4e78-ab5c-201dcda17d31" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "09b9fdaa-4ca5-46dc-abb9-c276b7e82e9c", + "node-edge-point-uuid": "32dc038b-c280-4706-a8a8-046ce6103eec" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "58f77f6e-31ac-4188-bd8e-ccab15feb680", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2123-O-CU-UP-212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b80a3581-3457-4149-8407-49550e276816", + "node-edge-point-uuid": "af7c7fef-42e1-4573-84b5-4c7fae382bc7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc1a9a08-0a4e-441f-85e0-028a0f163a24", + "node-edge-point-uuid": "e8514699-a0f5-4921-94db-6dc188f9b16b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e9638dd2-27f8-4e03-8de1-3878ebcf51ef", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21231-O-DU-2123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc1a9a08-0a4e-441f-85e0-028a0f163a24", + "node-edge-point-uuid": "8a284fa0-5e0b-4f95-9244-bea7a6ef2eb1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "715708fb-291a-4d88-b516-7f0f552d09ba" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5c934715-ad73-45ca-a176-a77304b05234", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212311-O-RU-21231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9f1ba576-e980-4e5f-884d-d1504c7f129a", + "node-edge-point-uuid": "b75075a5-ddfe-4fa3-b142-e3b131e4a87e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "39d70a00-4af5-4779-8b0f-70ce5a280441", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212312-O-RU-21231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "db8bdd13-6947-474f-9ae6-a74a68d5e362", + "node-edge-point-uuid": "3f208bcf-a932-43dc-92f1-0e72b7ace00b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ff4f9868-5dd2-46de-bdbd-84a337c31742", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212313-O-RU-21231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "63d1fe20-ad93-4d0d-8717-9d4a2008bdb0", + "node-edge-point-uuid": "5a436772-4d70-471c-8dc9-011018a122d3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c38813cc-a7ae-4359-9294-0bf1c17e6a39", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212314-O-RU-21231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ce28d67d-3eb8-4225-9f91-4cb8a955846d", + "node-edge-point-uuid": "1c12105e-82e6-4e12-990f-49b28a5523d8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "18457ba0-1ea2-407c-b7c5-22d06b1d0bdf", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212315-O-RU-21231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a9f005b4-3839-4efa-bca8-74faea08c000", + "node-edge-point-uuid": "57f1f422-d82d-434e-98ee-c980b268c5cc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "45a2f6f7-c107-484b-b35c-dbf983c76d41", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212316-O-RU-21231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8fc95fd0-ddca-4e78-b199-eab408a0a912", + "node-edge-point-uuid": "b6405dee-9fa5-4090-97ff-c88fad10b4d3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "36d14e0a-6a9d-4df5-b938-1fae8880a7fb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212317-O-RU-21231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a77cc49f-7c78-4eaf-b350-3c3fec364d2a", + "node-edge-point-uuid": "005962ec-f645-4bcb-9114-7d8dcf71e210" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "de2d1eee-079c-4794-baeb-58912aaede91", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212318-O-RU-21231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ec95c45f-9d76-4fc7-83d1-1eeeb9fc8d77", + "node-edge-point-uuid": "0625d2d8-949a-45b3-a9bd-89645815864f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "777bb6bb-aa67-4653-aee5-766554b24e7e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212319-O-RU-21231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c939875-2757-4ec7-92e5-fa3f7dfed8d8", + "node-edge-point-uuid": "33b75b47-7d55-4e1e-8ca8-258dda178c6d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a0c9e4b7-b040-43c2-9e60-7cfae03b0c7a", + "node-edge-point-uuid": "a211f8c7-6944-4abf-a60e-dadb24647691" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d94306c4-6d72-46e2-8bca-7503bb7bb7a1", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21232-O-DU-2123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc1a9a08-0a4e-441f-85e0-028a0f163a24", + "node-edge-point-uuid": "8a284fa0-5e0b-4f95-9244-bea7a6ef2eb1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "52d23fd5-584f-49c4-80fc-69432d2cb246" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "99ea4985-ae98-4c56-9c2d-5b860727593b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212321-O-RU-21232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fbbc1c22-4ebe-468f-8dcb-e86193901cf3", + "node-edge-point-uuid": "7574f8e7-74bc-4e88-ab58-e8a5322c126a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "99861ff1-bb27-4917-be00-d11f9cb218de", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212322-O-RU-21232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5b7d626a-de38-4650-9ca2-a8e398e97244", + "node-edge-point-uuid": "e10f8b83-f82b-4109-ae6e-78b8d2725e21" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1d6fa03c-e9ea-410c-b2ca-e4a95f9991d2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212323-O-RU-21232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6e71df3d-8a9b-4f0b-88a0-60befe78d958", + "node-edge-point-uuid": "bfa5844b-dcd2-45a5-a748-8a5511e6ed41" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0dabd6aa-f77c-4f95-9d98-877f744e3b9c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212324-O-RU-21232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "daa54f9d-fbd6-410e-b901-f5564d36f775", + "node-edge-point-uuid": "d45ef267-9419-483b-8414-2b178cb54a46" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "866faebf-9570-49ca-afda-0b0bd71067c3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212325-O-RU-21232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d27bcf7c-fb5a-4b5a-b347-95929c11fa0a", + "node-edge-point-uuid": "36cee671-f002-49cd-8b21-f13d1e1888b8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "84e01092-d402-4583-85e3-47b8ebe297b9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212326-O-RU-21232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "701c93f1-ba62-448e-83d7-9e2c556b4f23", + "node-edge-point-uuid": "27c57a4d-a093-4626-ac29-3b149cf2698b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c918ed10-b67a-4b6a-8986-1136c43103ea", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212327-O-RU-21232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5557b072-225a-475f-9b23-81525bce8246", + "node-edge-point-uuid": "e8d78ffb-71c6-4253-a37d-f604389279ff" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d622b84a-5cd4-4b8a-a44c-3f882a47ccff", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212328-O-RU-21232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "422d46ad-c578-46ba-9014-b0ef28edd304", + "node-edge-point-uuid": "2563c7a2-ce84-4286-b1ac-1cf4c38830e9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fda4c280-0981-4025-8c71-4fca30c65a62", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212329-O-RU-21232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1885701-e7d6-4caa-bc5b-85440318ede0", + "node-edge-point-uuid": "6d0fe4ca-9527-41c3-835a-2f9d75d4f8f7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bda0b91d-6549-4ee2-ba37-d48af0df1309", + "node-edge-point-uuid": "ab9d4dd3-4ff6-4a3f-a75b-91d2e4e32b98" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cf11c664-6d60-4cd3-9e9b-77e944b74f51", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21233-O-DU-2123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc1a9a08-0a4e-441f-85e0-028a0f163a24", + "node-edge-point-uuid": "8a284fa0-5e0b-4f95-9244-bea7a6ef2eb1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "55b19f95-2595-47cd-95cf-c5f22a9b743f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "38da1e04-7a0f-472d-959c-70def4c7a41c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212331-O-RU-21233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "df74b507-11f6-4fcd-a579-e8e77b9f4f19", + "node-edge-point-uuid": "adf3be45-609a-44a7-891f-530102440796" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9426033-128e-43c2-af49-8713e2ae2b0d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212332-O-RU-21233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b14fe859-31df-4eac-9122-8d3a19d4b9e6", + "node-edge-point-uuid": "92fce0f6-e88b-4d89-a9d5-899de5e63915" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b7a5f87f-7476-4a3a-8fd5-3f4da7997e38", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212333-O-RU-21233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9423a34d-8506-48dc-b1e4-9cc4b58de0ca", + "node-edge-point-uuid": "5c311c3b-ff9c-46d9-9ef1-5017d42c1120" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ba135fb1-7b9e-4b28-b912-3637987364aa", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212334-O-RU-21233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "36a4fba5-82de-4986-aed3-c381ba98ddd5", + "node-edge-point-uuid": "fa9ebe8f-0936-45b5-92e4-4121a8abfc01" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "31434443-2eb4-4529-87a3-7e7fd78dcb46", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212335-O-RU-21233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7daa1d26-5141-468b-8c25-4dfa30e930b5", + "node-edge-point-uuid": "9e43f7fb-21e1-4fe3-980f-ef4d9ffa0fa1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "17ffba20-8178-443f-b866-74bfe8bdeac7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212336-O-RU-21233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ab930fae-c8c1-483d-b246-866cfad5a25a", + "node-edge-point-uuid": "07356f5c-c184-4fc0-82ce-e7e4b6f6bd6b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2d160be1-0465-4f8a-a83e-98f859407d7f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212337-O-RU-21233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b3f8fa5c-bf92-4c6e-aa4a-f96cd9a7a3cf", + "node-edge-point-uuid": "10c65d06-52aa-4770-92ad-38277b51238f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0d693b71-321c-41a1-8a5d-db71aee54cd7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212338-O-RU-21233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "64fbe7a6-3188-4956-a72e-1c1810207ffd", + "node-edge-point-uuid": "637387aa-abbe-4818-9e1b-ab1b875776de" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5d271886-06b3-469b-b316-4269d835243e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212339-O-RU-21233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f752b4ad-b7ef-4ec5-945b-afc1b45247be", + "node-edge-point-uuid": "f3eb0c75-fba5-49bc-b20a-7f49dfe47415" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a458c44c-cfa9-4652-bb9e-86ea6b7f706d", + "node-edge-point-uuid": "443f1ab2-aeea-44f3-959d-492b6fe83048" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f4fc7afe-72a0-40a9-b813-e128b8b013b6", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-21234-O-DU-2123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cc1a9a08-0a4e-441f-85e0-028a0f163a24", + "node-edge-point-uuid": "8a284fa0-5e0b-4f95-9244-bea7a6ef2eb1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "2342c221-7bf8-4a21-9e3f-f6496f690bae" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ca2e0897-9ad4-4c65-b2b9-4adf35a20baa", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212341-O-RU-21234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9f5b8b77-1e36-4888-a12d-91a68edd09bb", + "node-edge-point-uuid": "25d92999-ceec-4bd8-b800-33460d35a3b7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7c90f1e9-4286-4c37-925a-4bb0e9f14450", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212342-O-RU-21234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5830844e-1c29-47fa-9c97-1a95bc6d717d", + "node-edge-point-uuid": "66f3d802-424d-4191-8386-57b0bd0fb079" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "62d4993a-2cc3-4fa7-86e7-24eb71a1bbf2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212343-O-RU-21234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "59d19f7d-dc81-4de9-89d6-40b2669c3c21", + "node-edge-point-uuid": "8b9845d7-4935-43a1-9697-101ef9946518" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0a7cc7cf-ed14-4c60-a54c-3b018933864b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212344-O-RU-21234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "82ba62e4-fc4f-4dcc-a514-39ef8577f845", + "node-edge-point-uuid": "1e8198bc-6536-4d14-868e-960247acc7fe" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3ec12567-b9c6-4913-beec-8bdea198b956", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212345-O-RU-21234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e13270ac-4b56-4fec-b4c1-2170529d2908", + "node-edge-point-uuid": "8885c6e6-85dc-4984-be24-5777eb2a3a57" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ff861f9e-bad3-40bd-9848-7dac18afd8e2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212346-O-RU-21234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fe1e219e-acf1-4045-8135-2499a5a0c0ee", + "node-edge-point-uuid": "45bc820c-44b3-411f-a45b-213e2b4da6d9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a3af25aa-bc49-4b2b-b820-a850023b41bc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212347-O-RU-21234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aafdaa72-c7dd-4b45-93d9-9f32ad0bf68a", + "node-edge-point-uuid": "cf3c756d-c2ee-4c68-bcc1-077c9789ae44" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3255018e-12bd-4f62-9cb2-e885644db00e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212348-O-RU-21234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8e49cad0-4864-4b17-b953-bff54017981e", + "node-edge-point-uuid": "a46a2f6a-b5f9-4e73-91da-04e9ef201a96" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "63647c75-c943-4de6-b5eb-eba01339dc2a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-212349-O-RU-21234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5dff63db-16d3-4570-89be-63005a1e428a", + "node-edge-point-uuid": "9e9a9211-2cfc-481e-a43f-ddab21891e0d" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f5c26543-7102-461c-8d92-1ec7897e79a2", + "node-edge-point-uuid": "022c1f79-f4be-4dc8-8741-ef55081488cf" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "824e7aab-bbb5-48df-9eb8-8c8610bebbe7", + "name": [ + { + "value-name": "topology-link-name", + "value": "NEAR-RT-RIC-22-SMO-2" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4fb8f4b-d54f-45a5-838e-198f6a9d60e5", + "node-edge-point-uuid": "1d3f848e-ab34-4336-9f71-460c15261955" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "45f65655-cdb4-4984-9c80-b4f86ed1c592", + "node-edge-point-uuid": "c1593743-fac9-47bb-abce-729bdaebffa8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "07f1eb16-3826-4cdc-b090-24c57939eebc", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-CU-UP-221-NEAR-RT-RIC-22" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "45f65655-cdb4-4984-9c80-b4f86ed1c592", + "node-edge-point-uuid": "72e68ac6-3e9e-4196-b8ee-97ca4d35b30b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "342324c8-cd87-41fb-ac17-d232919e3f15", + "node-edge-point-uuid": "03347489-93e7-4345-b11e-e16f3b119adc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "42c07414-c536-4287-acf7-dbe476018d88", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2211-O-CU-UP-221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "342324c8-cd87-41fb-ac17-d232919e3f15", + "node-edge-point-uuid": "37c065d5-79f4-4082-b101-2f5a9ff283b4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cd8ddb57-8a6d-45ee-ac5b-ff8f52418c7a", + "node-edge-point-uuid": "5210d5f3-f673-4e8e-bc68-13ea48ec2904" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0aa70010-3c45-46b6-b724-7e10e1b401e7", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22111-O-DU-2211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cd8ddb57-8a6d-45ee-ac5b-ff8f52418c7a", + "node-edge-point-uuid": "7418220c-8f8d-408e-ab20-e53397d96736" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "dc4098e8-e74d-4432-9971-4c0f42e64e50" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1a587693-08f2-484e-b249-594b75ef800f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221111-O-RU-22111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "def6235e-a3fe-4046-9c1e-4aa0888da431", + "node-edge-point-uuid": "2740e725-a5d6-44b6-b574-eb5e7fdd4f89" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "15206dd1-e845-48e7-9f45-270ee93aff64", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221112-O-RU-22111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0f2f1b93-9357-42cd-8e84-9c9c563eba59", + "node-edge-point-uuid": "ea2f128e-8f12-442c-85b9-aaa05f1bd183" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "880b737a-44be-4bee-aadf-ebc0a912b864", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221113-O-RU-22111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "64fdc895-ce69-478a-8e5c-de913ed4def7", + "node-edge-point-uuid": "c655ee19-e7ff-46d0-ad52-9ab07423f5f1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "42256bc6-5727-41f9-b988-8916087b530a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221114-O-RU-22111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "000f6c26-56e2-4617-8761-d3f34e57b687", + "node-edge-point-uuid": "2304edce-8045-4977-9e54-803131072bb2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6c8ffbb7-2750-472f-8f3d-17509f24db7b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221115-O-RU-22111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8a8e852c-26aa-4e45-859e-71f9508dc077", + "node-edge-point-uuid": "378f3abe-2620-4b6b-9712-ed143a91016a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9ab65275-f435-4e1d-a239-008a273cf4d8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221116-O-RU-22111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4aaefbeb-6f0a-43bd-a558-e7690a5d5940", + "node-edge-point-uuid": "8098ce17-f9e3-45e7-91fb-3ed4af5f4bb4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9b6e2ce1-94d9-4f04-8469-a5a53ab118ed", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221117-O-RU-22111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a46b47d4-588c-4c0b-a39b-1ca0981b9e1a", + "node-edge-point-uuid": "aef5d27b-47a4-4c42-8c2f-8f7a016c4a62" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1fc4986b-6411-4e98-ae0f-3566a1fa29fe", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221118-O-RU-22111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ac281c00-3d83-42c7-85a8-9344665354fc", + "node-edge-point-uuid": "0ffcc725-a028-461f-8dc1-4dd4557032a6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "87402c8e-66c5-4aa8-8117-b3311a7e046d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221119-O-RU-22111" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c807d393-9f72-46c4-a695-7ab726a33df4", + "node-edge-point-uuid": "729b053a-959b-49f2-bb06-89ba0534a258" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "eec9c066-a9b0-4e56-b108-4b5a9426d84e", + "node-edge-point-uuid": "5685f1dc-92c6-4a0d-8072-636380e39c62" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "868d5ec1-42e8-49fa-af4d-21f46162f9ea", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22112-O-DU-2211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cd8ddb57-8a6d-45ee-ac5b-ff8f52418c7a", + "node-edge-point-uuid": "7418220c-8f8d-408e-ab20-e53397d96736" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "be28bf0a-fff2-441a-8c8c-d3b7d3d31a42" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7c6c0729-f749-4042-880c-853936c64096", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221121-O-RU-22112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fc09a823-591b-4a7d-a640-bd3f89a9922b", + "node-edge-point-uuid": "3b13ca70-1670-4dbd-9715-a5eacc6eff31" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "551f1067-70dd-4974-a322-b5542ffd277a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221122-O-RU-22112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e4dcca9f-43ab-4dbb-804e-ce2a802e87fa", + "node-edge-point-uuid": "21a0c444-fe49-448e-968f-abe1b31c6232" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "32e579f5-5cce-44b0-9dbe-5e1692b81a3c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221123-O-RU-22112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "025e69ca-9319-4230-b7d3-dc9db5b5cd2f", + "node-edge-point-uuid": "22fb3dc5-607f-4700-a407-b0a5c434ca21" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e9df5839-3256-4da7-ae39-08df7d6f6885", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221124-O-RU-22112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "33862c87-138f-4b40-8931-22c30d860060", + "node-edge-point-uuid": "9e0fd580-7e4f-41f3-b9b1-d216bb6fa3a9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7f042215-701c-4f31-8a6a-0a8d46da9e20", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221125-O-RU-22112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "58f77184-60f8-4c47-ae64-cd713bc71318", + "node-edge-point-uuid": "fb9dfa4b-be0a-4b60-9761-449173d7b306" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a44d68cf-5b77-4497-a0a7-b983bf1d3e3d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221126-O-RU-22112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "17860a28-e45d-4064-8b88-9875cf2a79ed", + "node-edge-point-uuid": "5fc1392a-23cc-4768-8fa3-ae4dfd5532e6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "87fcc17d-1bc5-4267-83f1-2a353247bcf2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221127-O-RU-22112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2c3d4774-ea9b-4dc7-9ecb-594f58f49463", + "node-edge-point-uuid": "93b08b73-33ac-4342-8ee5-86009c9c3481" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "18107922-e4a0-420c-b99e-f6d2feee6a3a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221128-O-RU-22112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "53ba26e8-d460-41b4-a35e-9b56b9348d34", + "node-edge-point-uuid": "64ef7a9d-ab25-494b-828e-2b09a967c187" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "786eede8-c722-4f28-8aec-844e4876385c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221129-O-RU-22112" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4fbd413f-ac34-44f2-9e72-60f860d29e46", + "node-edge-point-uuid": "0b828cfa-65c1-4f2a-a574-f36793e23430" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2c3ff75-1a05-4a1a-a6b4-8b2da3298efa", + "node-edge-point-uuid": "cd5dfd9e-4479-4fb7-82ca-2870e1373791" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9a9f464-81d2-4ddf-b7a5-38dd09e1cfa7", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22113-O-DU-2211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cd8ddb57-8a6d-45ee-ac5b-ff8f52418c7a", + "node-edge-point-uuid": "7418220c-8f8d-408e-ab20-e53397d96736" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "6aeca878-d47f-4137-a2ff-c0ecadee38b8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7725ec32-38ff-4a16-a983-16a945ff9ff7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221131-O-RU-22113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2419dd9e-f721-42af-a9e2-aa177173a048", + "node-edge-point-uuid": "75bcf443-fdc1-42b9-b93b-a4e81595905c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "03ce25c0-3a13-48c2-8282-9fd734b34ac9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221132-O-RU-22113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ae7597b7-eb9e-474a-a360-11a01e38e9fb", + "node-edge-point-uuid": "c9b62ef1-fe6c-4455-bef5-7873bfd5bc43" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4aa00ac7-24b5-4e88-a9b4-7d767c949cfc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221133-O-RU-22113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70808a5c-eb96-41fb-94ce-5bdffc3df769", + "node-edge-point-uuid": "97592e4d-1592-45af-893c-bcf0dc2b6bbb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bde80172-518d-40df-8198-444171a3b0c5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221134-O-RU-22113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e0f52ff8-5971-43e8-8542-810411735f1a", + "node-edge-point-uuid": "3175bb11-a3c2-4696-aade-dae4e1c5c9ea" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fd57c413-89be-4032-966a-206983488f07", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221135-O-RU-22113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3519aecc-361b-40b6-a664-f1118be082f1", + "node-edge-point-uuid": "c1323e0f-f69f-4ca0-94ab-f2b4192478ac" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8508f7a6-9606-4c22-b1ca-1d8563f1ae3a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221136-O-RU-22113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "17945010-d104-4075-b01f-2ff7b2081539", + "node-edge-point-uuid": "8448be4d-e459-4ffe-89a1-f3ae0fcb9c22" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "53513fb4-57b0-431c-b446-992e88fd8ade", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221137-O-RU-22113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cac632e3-05e3-40f8-9d39-453e122f062e", + "node-edge-point-uuid": "807ee14a-2eaf-4ad2-b8bd-8c9b4b688781" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f2e504e2-6de1-4f13-b85e-d007f2d9f359", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221138-O-RU-22113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a2d82c39-36f4-42ef-b075-14562146e346", + "node-edge-point-uuid": "c0ed3ff8-5d94-45f9-a571-536d79acc127" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4cf5910c-8f72-4ae1-bdf8-4c693be9e227", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221139-O-RU-22113" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abe43916-b47c-439c-95cc-8b44888b83ca", + "node-edge-point-uuid": "cd469649-cd3f-48c0-b392-cddb07a8f69f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8a2e3b52-6710-412b-bec7-133b11fc722a", + "node-edge-point-uuid": "5cf593bd-a7f8-4ed9-8fcb-f2a539a11aae" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "818e94b3-27c3-447b-9467-2dde45632bae", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22114-O-DU-2211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cd8ddb57-8a6d-45ee-ac5b-ff8f52418c7a", + "node-edge-point-uuid": "7418220c-8f8d-408e-ab20-e53397d96736" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "2f20b579-119e-4935-bd0f-2449ddcdcc9c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "439bc1c2-8d0e-4cd7-b08c-05a29bd2c3d1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221141-O-RU-22114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b9d26d58-473d-4688-bfd2-2795dfff9da2", + "node-edge-point-uuid": "88ab067c-91ce-499e-8d98-8eb368041ba6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "47dfe04d-94ff-433c-bc03-5ce028da4ec7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221142-O-RU-22114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ec40941f-4351-4c65-8cd1-68d3aa0fbcc8", + "node-edge-point-uuid": "53be0c5c-bf49-4c9d-8c9b-bbdbe2752591" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2c1797a1-bd66-4c80-bfeb-c46e3788ecab", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221143-O-RU-22114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7ed486c8-1ae5-43ab-8620-226aafcf0f7d", + "node-edge-point-uuid": "896b289f-eb29-467b-bfad-28e34da9f44a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f62651ab-c377-4064-8652-af2465e108e2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221144-O-RU-22114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "53ae8655-fdcf-4f33-9663-9666c097a0f5", + "node-edge-point-uuid": "b6c50773-8dbe-4ffd-b821-691672191131" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "713b1a35-0376-459a-b6b9-392fb89525e4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221145-O-RU-22114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "eb286f4f-0ce9-496c-be9e-8ac7b685d938", + "node-edge-point-uuid": "9fe0e050-641d-41b3-8194-0240030736c1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "107d8ae0-2520-4a50-abc3-b4b31f7e6ff9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221146-O-RU-22114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2954d779-f735-4d55-90ee-29d09ac2d300", + "node-edge-point-uuid": "b778c120-81a8-4f9e-99dc-cf9a9ed55fc7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "354f8cf7-da61-4324-b955-377fd3a36fbd", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221147-O-RU-22114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6b41dc78-a002-45a3-93f2-4e70d1f3aaa6", + "node-edge-point-uuid": "8e19e30c-1c8b-4506-b20f-d62fbf773fe4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d46b5b39-c910-4cba-8e47-16f92377dbe8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221148-O-RU-22114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c8ed5fce-28eb-4e46-b309-8c01f6bac14a", + "node-edge-point-uuid": "5a1caf09-ed9a-4fa3-a38b-a62a341bda5b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ecc4d0bc-225a-47d3-8abd-10efce51567c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221149-O-RU-22114" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a1e9b62d-9ad4-4521-9cf4-a55d37d8dfe7", + "node-edge-point-uuid": "3994531f-cd8a-45c4-a3e2-4be8a258c9c6" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a5edc933-b2ac-4b4c-91dc-76c6eaa443ff", + "node-edge-point-uuid": "35277c66-119d-45f2-a41e-f653183649e7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c502561f-4e23-4bb7-8e93-a9e7f608910b", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2212-O-CU-UP-221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "342324c8-cd87-41fb-ac17-d232919e3f15", + "node-edge-point-uuid": "37c065d5-79f4-4082-b101-2f5a9ff283b4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4b199fdd-1cf7-4703-b249-0f9bbe65655c", + "node-edge-point-uuid": "adbd411f-a082-4cef-aa8a-7914e6ba8021" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1258a95d-b870-415f-a71c-e9a9c07af296", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22121-O-DU-2212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4b199fdd-1cf7-4703-b249-0f9bbe65655c", + "node-edge-point-uuid": "7977509a-0b7d-40da-bd8f-9e596d33c408" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5901325c-f849-46c6-8188-b8a6f2ddf752" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9ffb33f-f584-41ce-b98c-6c0c3c867188", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221211-O-RU-22121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1427c950-caba-4f97-9eb0-f77c75e0807b", + "node-edge-point-uuid": "ffc15e8e-e7c3-4253-b6d1-ee3ea1cf71a3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c388fad5-b123-41b8-b937-18ec1d4c32fe", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221212-O-RU-22121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2522799-e2f6-4f00-840e-86e672c5bd7b", + "node-edge-point-uuid": "2e5a1c1d-bff3-4ba4-a470-5de92ec7c5a4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "07112822-15a4-40af-a78d-34fbba225a13", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221213-O-RU-22121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f7bb7d2e-6685-4047-9957-bca2c38eafb2", + "node-edge-point-uuid": "43f871fd-cac4-4408-aa1e-9d094b58c737" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "80ef72af-3ced-4508-9f3b-f1c6a18ec2e3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221214-O-RU-22121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "998b2e09-45a2-4278-8f82-aef7d5605767", + "node-edge-point-uuid": "925e8b1e-fe8c-4e40-8325-cdf28ef50616" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "dabb1cd1-8431-4f3e-9bb3-1bc9118edc7d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221215-O-RU-22121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "111921b9-932c-4ca0-9ba0-8202738c6642", + "node-edge-point-uuid": "7bc228c6-b81b-4314-9aa7-9953d66f3802" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c5c8fd38-b36d-4028-a64c-37c84a426444", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221216-O-RU-22121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "30280a47-8264-4273-b2a0-7a38dd1f2ac3", + "node-edge-point-uuid": "e0b7fe39-e848-4562-b466-579720b4d43c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "827e0b60-820a-4ee6-a5f9-362f6dccac8a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221217-O-RU-22121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4fd21c6-a879-491c-898e-5ab6d96a8b47", + "node-edge-point-uuid": "e6fc5015-e3c3-42dd-a8ac-dd4101a20524" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d23e3954-f97b-4a29-8f20-828a06cee968", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221218-O-RU-22121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d7cac0a1-8b1a-421a-8c57-ac8ff2899048", + "node-edge-point-uuid": "3f835194-6597-46ca-9a19-4ed90c5b5477" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "78b52a4b-032c-426d-a082-e0ec5dd75814", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221219-O-RU-22121" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3e3fe63a-0561-4c40-9807-45ec9165b1ad", + "node-edge-point-uuid": "5fe5eee1-da11-4e26-887e-0d24f4d74217" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d07d3456-3bd5-453f-9c5c-001d15923461", + "node-edge-point-uuid": "d96e9cca-8763-46bc-98a6-e41547b1f770" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7e9280f4-b8a5-4dd9-b6d9-eae9ed13e735", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22122-O-DU-2212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4b199fdd-1cf7-4703-b249-0f9bbe65655c", + "node-edge-point-uuid": "7977509a-0b7d-40da-bd8f-9e596d33c408" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "4663b42d-0dc0-49fb-a578-13b7690000cf" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "75b87afa-170a-4649-a127-eac965fcfeda", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221221-O-RU-22122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0a2ab867-6ea6-4f1a-9d7d-5e11d911913a", + "node-edge-point-uuid": "d569397d-088f-448f-bfc0-d621c4171aa0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5c87115e-5f99-49e6-b699-12e796b59c2f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221222-O-RU-22122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5421f6ca-6d6a-4463-9387-a2bf58a83273", + "node-edge-point-uuid": "375de754-2c96-4544-b27b-18e0d6086579" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "230871c0-2d75-4da7-ab60-30bb8981eab1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221223-O-RU-22122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "37492af7-0a6d-4b6a-81a7-99df93c7496c", + "node-edge-point-uuid": "2c006d96-edb4-4511-8f33-a02688b9adfe" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4c200f09-bef1-437c-b4f6-f7a6f9f70cd4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221224-O-RU-22122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18dcdf8-a8d5-4d53-a849-e3d271a65a0b", + "node-edge-point-uuid": "faec0097-4f64-4d37-9181-aa4a4d4caf20" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8b51a03a-4a8a-49cf-8de2-e707dca9579d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221225-O-RU-22122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "677f76a3-f773-4ac0-9f1e-ee2ea1d64832", + "node-edge-point-uuid": "e3abd6fd-6ef1-409f-8f75-0633196ae10f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "15251bbc-8728-4ebc-a1a1-8467f145276c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221226-O-RU-22122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7e23eae9-58bc-4e3d-b35c-1d29fc229151", + "node-edge-point-uuid": "0e85e670-c1e3-410e-909a-122f99ae4b18" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8a06636f-8f62-4301-9f28-d78343530314", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221227-O-RU-22122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "aec645b3-ef3f-4b21-be12-0f5c7ced8a53", + "node-edge-point-uuid": "a77eab40-9d48-4956-a69a-255420bef60d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0cbef205-49b4-4cd5-b77f-eaad184f3cb3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221228-O-RU-22122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "abef7703-bb78-4dcf-936c-906bbad38ee5", + "node-edge-point-uuid": "9c62b155-06b7-4041-b263-3ad68cbba18f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f3754cef-9762-4b26-9e9b-9415610cd22b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221229-O-RU-22122" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff8b4582-9b1e-42bc-92a2-01ca60708f57", + "node-edge-point-uuid": "0bcf594b-07aa-428e-a30e-3618d94154d5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0475dcae-f60a-4c4a-854d-ae5fdf1aff79", + "node-edge-point-uuid": "5bc66ad5-503c-496c-bc56-041ecbc7d895" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ea08a664-3c26-4e5d-b151-48746d2651f6", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22123-O-DU-2212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4b199fdd-1cf7-4703-b249-0f9bbe65655c", + "node-edge-point-uuid": "7977509a-0b7d-40da-bd8f-9e596d33c408" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "3638529d-09b9-4fe9-acb6-d54912918834" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a3110859-9388-48bc-b206-f26a470f2ac4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221231-O-RU-22123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7dfdbca0-71af-4cb1-b304-fcae303f2f8a", + "node-edge-point-uuid": "6c1920a5-4f57-40b9-bf84-55d2afe131fe" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "18cb6f50-1cb9-46f8-8562-edc341afbe4b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221232-O-RU-22123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a35b6e43-9631-44e3-b0de-5ae64b75d082", + "node-edge-point-uuid": "9227934b-3bab-4fa9-b277-c576f5952e5a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "95dbd3c7-b3db-42f2-a522-91edcb0d4721", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221233-O-RU-22123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f4f24754-3110-41af-8504-2dbb16021ed9", + "node-edge-point-uuid": "ea3d3686-91d5-4119-ad26-58c40bf31d3e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "05cb7385-690a-41df-90b9-c2cf15c8d497", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221234-O-RU-22123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e11a2985-aeb7-4e7a-90cf-b028e0178f5b", + "node-edge-point-uuid": "689d561c-d5db-4288-82f4-155f547e6643" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ed854f1f-f396-44c0-904f-5c5f96fd2b9f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221235-O-RU-22123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f918750f-7dd4-42ac-b5c3-50768bd3aa72", + "node-edge-point-uuid": "1ae280d1-7c07-4f39-8d06-8645fa30431a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "06b91915-1560-4df9-8362-131e5548e8f3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221236-O-RU-22123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "523062b6-d9b4-4ec6-b1ee-610b74addc12", + "node-edge-point-uuid": "fcebfc01-429e-432d-b9ba-38cbbcf5d37f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6ae42132-653b-4ee9-9671-51b49b5fd709", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221237-O-RU-22123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a8c65b23-37ef-4963-8bc1-5627d1cc6a9a", + "node-edge-point-uuid": "dd3c0482-103a-4c09-9d08-4b9e8cf9f5db" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2d37cf28-99dc-4133-959b-65796f6bcbce", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221238-O-RU-22123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5715c439-ceaf-4785-a691-3ee5fe5d201a", + "node-edge-point-uuid": "3b2a958c-5bb1-436b-a7a9-c0111c54ffca" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c14da0f8-e971-4d8f-b112-c1ccd703cd5d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221239-O-RU-22123" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b4464df2-0889-478f-bd94-2e933797e2f2", + "node-edge-point-uuid": "4eb12a24-5f25-447f-9815-3a60232a5db7" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a81bbcfc-77e4-479e-a7a5-ff92dfec3899", + "node-edge-point-uuid": "c3512be0-700a-4726-ac2a-30613bab3b9f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8ee70dd3-9d17-43d2-807d-9937e2297ff9", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22124-O-DU-2212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4b199fdd-1cf7-4703-b249-0f9bbe65655c", + "node-edge-point-uuid": "7977509a-0b7d-40da-bd8f-9e596d33c408" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "ee4c887d-f9dd-455f-a7b9-53343df9a2d4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "487a3e09-e2f5-485f-887e-8d76b0d371b4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221241-O-RU-22124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "796573f9-b5b0-4239-a485-4104b946fbe3", + "node-edge-point-uuid": "82994eeb-521e-4f54-a7e3-966fd4125bc0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b7676ccb-1461-4a9f-9342-e1fed669f235", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221242-O-RU-22124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c182db4a-77c9-4261-9991-33bf08977d46", + "node-edge-point-uuid": "688910a6-0329-4586-8997-5bbcb8bd619e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4052ac4a-c941-4c74-9582-855eeb106ec0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221243-O-RU-22124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3ab4c39f-ae25-4c51-a1c5-069aefff4b93", + "node-edge-point-uuid": "21ab4e99-29f2-47da-ac54-1c086a30c1e6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e2f508d9-b6c2-419f-b74d-484b0e87ff1c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221244-O-RU-22124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e8ef934d-f301-4b47-9dd9-1e01e1c50576", + "node-edge-point-uuid": "c8b84d31-3bf9-4db1-b00f-9e8db5af6a6e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "214b1019-f0fb-418e-8a93-1040dece5839", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221245-O-RU-22124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8677748a-fde0-4dfd-b9bf-18bd648f9789", + "node-edge-point-uuid": "59164cb3-ea5a-4aa9-a33a-c0df4ee63b8a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2beb2103-4672-4eca-930f-b6d7058ade0f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221246-O-RU-22124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c3440851-8504-449a-b35a-c1f761fbcf90", + "node-edge-point-uuid": "47f62709-3544-4639-8233-6c0b78690e06" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ae4e031d-8bab-4563-8d6b-155849ad5a55", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221247-O-RU-22124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ff337711-5687-4b10-8752-a258d515e37f", + "node-edge-point-uuid": "4d40fdcb-d8b5-40cf-80a5-72396f580cb1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ae51b078-d6b8-4536-b144-8a4e2f7864c1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221248-O-RU-22124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "417feedc-0fc5-46d0-869e-760db90a7b61", + "node-edge-point-uuid": "563ec195-7373-40bb-b3ea-10a8416fc817" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f9fa4cd8-70d6-4c47-b489-5cfefd2b5e9b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221249-O-RU-22124" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86818fa9-35cc-4ba9-8d63-a34150051fa6", + "node-edge-point-uuid": "042f4121-c782-4071-ac9f-f787f360a19f" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b69c9087-6abe-4246-b4a7-d75566cf4c44", + "node-edge-point-uuid": "d0662fa9-9f97-42ff-b52d-241f0bdc9842" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9eb9c535-0660-48ae-b3e7-58cdbb9c68d8", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2213-O-CU-UP-221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "342324c8-cd87-41fb-ac17-d232919e3f15", + "node-edge-point-uuid": "37c065d5-79f4-4082-b101-2f5a9ff283b4" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "341a95d4-d65e-400f-8e6b-52c5e8f99b9e", + "node-edge-point-uuid": "a0cf6484-25cc-4de4-882b-07f0c580faf3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "34666c7e-09e0-40b7-bffd-74a8708d25e1", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22131-O-DU-2213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "341a95d4-d65e-400f-8e6b-52c5e8f99b9e", + "node-edge-point-uuid": "302c4c81-0f75-4e2c-a570-034d50171974" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "29c920b2-fbae-453f-ba9b-6700bbdd296f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f6933919-6517-4ed8-803a-95cf1b16bf09", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221311-O-RU-22131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1518a73f-d33a-45c3-8016-de196fa1ef32", + "node-edge-point-uuid": "fbe8f4a4-f0f7-4168-9a44-f127cc1935b1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "22164a84-5660-40cb-85da-16832933d1eb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221312-O-RU-22131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2af9ddae-e409-4162-bf72-3089ea0e8a88", + "node-edge-point-uuid": "b41d10fc-195e-49a4-a699-1de85f2a01a2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1cc65bf2-db5b-4bb7-8df4-93aaa3021669", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221313-O-RU-22131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "51cc932a-5a0b-4935-8b84-a3b1e68efc86", + "node-edge-point-uuid": "35e82f3f-c6d6-4fa4-8459-d6122cdc3392" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4a642883-6a97-452e-a283-edc6a3e3e7f3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221314-O-RU-22131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3acf085a-b3b7-4c4e-8478-a80f63899b87", + "node-edge-point-uuid": "a3b695e0-341a-40df-96dc-70c0205f808d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "016ea217-3e1d-40b8-9a97-b69f707ef7f7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221315-O-RU-22131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "42956404-90ae-4e9d-8bdc-f545e3300d6c", + "node-edge-point-uuid": "563b8cea-8d41-4f44-bd72-79e9ae277a8b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6ce78658-c09f-4fe3-bce8-2189cc513b60", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221316-O-RU-22131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "745cd1a8-278e-43be-ad1c-54de001dec0b", + "node-edge-point-uuid": "e4199523-9ffd-44c7-9c54-11336e978371" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6a622fe9-0bcb-426f-9bd0-b40e3ead43ce", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221317-O-RU-22131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4891e8b2-fc90-4733-8455-9ddc8d39ff82", + "node-edge-point-uuid": "69c91796-f62b-446c-9b79-d74987af6578" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "63afaa99-9b16-4e4c-9898-d225a405bd6d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221318-O-RU-22131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2b768729-3c89-49e7-b0cf-9f36f648a07d", + "node-edge-point-uuid": "39bfa5cd-6a7a-4938-b3ef-bf6b0d32788e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4d8922e4-a605-4b93-995e-5dfa8f3f21d3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221319-O-RU-22131" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4794c1b9-a28a-48fa-a58b-cbce68029f08", + "node-edge-point-uuid": "0d7332e3-41f7-4c37-9408-3b1c8ad1c908" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "724acc4e-a025-4f13-935b-b62a29759da4", + "node-edge-point-uuid": "52b8b419-f18b-4e6c-84a4-54827d0d52c5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d598a255-4210-4207-aecf-734201da5d7b", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22132-O-DU-2213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "341a95d4-d65e-400f-8e6b-52c5e8f99b9e", + "node-edge-point-uuid": "302c4c81-0f75-4e2c-a570-034d50171974" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "d86861f0-aeed-4989-81f0-1720e265b6ce" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "11822b5b-9c3c-47d5-90a1-4e0f0ea92a8c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221321-O-RU-22132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d89d85d7-c950-4afd-9e9d-a7780089d248", + "node-edge-point-uuid": "d71f2a52-132e-4b7c-827b-3f2c0afefd93" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "30805182-5e83-4c5f-b38c-0159fd343a80", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221322-O-RU-22132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b6b5af9e-468a-4cab-80fc-de5505e58908", + "node-edge-point-uuid": "cc284e45-d8d9-47e4-b515-2f7a4ef67169" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "abdbc4b7-234a-4340-b7bb-4a82784e28f2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221323-O-RU-22132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0ff0adf5-a346-4943-8b11-0b1b2a1795af", + "node-edge-point-uuid": "612f0a2f-df70-459e-babb-e04999c97a2f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6eda98b1-bd23-4744-a464-ceabc2a62e99", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221324-O-RU-22132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9495dd5a-9ff6-4d58-9539-6ae3652f19b2", + "node-edge-point-uuid": "d9ef826c-c700-4721-90db-250d270bdd00" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3affe89b-6fae-443c-9dd9-8a5fe7e042e9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221325-O-RU-22132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5cf8c345-6e06-4d34-931f-d9cb6923ccc0", + "node-edge-point-uuid": "7aaba73f-1f61-4a16-90d8-f9b452030efe" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9ca82977-3401-42ec-9e2c-85399ff84f68", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221326-O-RU-22132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f878bb69-0d4a-44ae-8625-8a83aaf8f6fc", + "node-edge-point-uuid": "f1898228-5c3d-49c7-9954-6744d54e4221" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1a14ae0b-1853-4afc-84ff-b273f68c0098", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221327-O-RU-22132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "74e1ae9f-1892-4206-8910-075d6c22d55b", + "node-edge-point-uuid": "f47fbd1a-7250-46d9-b7fa-0a8db240b446" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "22eb14ac-1696-4054-9d0c-fd3c500923f3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221328-O-RU-22132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "47e54459-54c8-42bc-885f-6730af1c59eb", + "node-edge-point-uuid": "d1746ea0-b9ab-48cb-9246-d85214457713" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9a7418f5-73a6-4c47-80e9-ae502c99e00b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221329-O-RU-22132" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c5300ecb-aa3a-4e11-b89c-3da49550c8e2", + "node-edge-point-uuid": "b698d519-1a1a-4251-8174-b0075dbc0338" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d61f0ed9-d036-4f96-881e-110c41b1d6ff", + "node-edge-point-uuid": "cfd628aa-87a7-475a-a9d2-36ad680820b5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "60ac86a5-c047-44ac-a043-bd05e0293fd4", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22133-O-DU-2213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "341a95d4-d65e-400f-8e6b-52c5e8f99b9e", + "node-edge-point-uuid": "302c4c81-0f75-4e2c-a570-034d50171974" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "bbeef3a2-da17-4fe9-b2ab-cb6d820d7226" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0206f311-b75b-4337-a5cd-c911737037bb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221331-O-RU-22133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "029d526d-bb97-4f36-a84e-5fb49e32f2d2", + "node-edge-point-uuid": "57f25d02-4af0-4205-894c-e2e3c0de6beb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2973db59-0bff-4815-b3ae-4a63b9744694", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221332-O-RU-22133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3c617ed0-873d-4047-aac4-5d589066aefb", + "node-edge-point-uuid": "94a6ef7d-3fd9-4ac5-b33d-222b2025ae70" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "603f1a5c-eee7-4a23-8d9f-513971cc6dac", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221333-O-RU-22133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "931a6ed0-aee8-4d4b-98cf-859fb0ffd489", + "node-edge-point-uuid": "55d3a771-9a4e-40cb-820e-5a59f36a0c66" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "83cf1c76-8777-4d02-90e9-d22627be85ea", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221334-O-RU-22133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "43a24814-4042-495f-92b0-710ca6459ae8", + "node-edge-point-uuid": "48b4177b-ad3c-415a-9b55-60f847e8deef" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5c7fdfe0-5570-4707-8deb-1b0fcada53de", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221335-O-RU-22133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cf95f33b-a58f-4f62-8c55-9680ac2b159c", + "node-edge-point-uuid": "1cf65450-7d0f-468d-9c5d-effe2836f3fa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b9c99262-762e-4803-8924-6005bfb682fc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221336-O-RU-22133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "16b95062-cce0-4dae-9834-8f4242b93b59", + "node-edge-point-uuid": "35fb117e-7d34-4d0b-bf98-0b715ba1e5f2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "58308c8e-d5a6-475c-8a50-1308b5e49be1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221337-O-RU-22133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4ee66b16-a061-434c-a080-ba68eb75b05f", + "node-edge-point-uuid": "d3eb541e-51d0-4ad2-91f1-324e4b5ed5d3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "021b4dba-01fa-4657-a9fa-cd95d4135c27", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221338-O-RU-22133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e122c8f3-bec1-46ff-aea3-79535e16361c", + "node-edge-point-uuid": "61d27bcb-f4ef-4eb5-b6e4-812a5937aca7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "58101876-272b-42a9-95d4-6fa6eb089039", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221339-O-RU-22133" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9a4234ff-a049-40f3-8afe-c938f63070d1", + "node-edge-point-uuid": "341fe1d3-bf6e-4a8c-ab00-9e7e66a7c3a1" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f825a338-5bee-4f73-89f2-c847bed65150", + "node-edge-point-uuid": "9ce5fed5-2ede-43af-8af2-feb6915e692f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7eac8b92-cdb4-44c6-b143-ccacbb356bfe", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22134-O-DU-2213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "341a95d4-d65e-400f-8e6b-52c5e8f99b9e", + "node-edge-point-uuid": "302c4c81-0f75-4e2c-a570-034d50171974" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "ec174292-cf83-4cfc-8d15-25d6e79165de" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "85d4124a-fb2a-40dd-af4f-212f08345fd3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221341-O-RU-22134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c8ddee6e-2e49-473f-8f54-904af9247a62", + "node-edge-point-uuid": "701d46b1-bed4-4ed1-be82-c47552c604ce" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f0479a87-56c8-405f-9a2b-8d2a2cffd375", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221342-O-RU-22134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dcdf79b7-8b56-4b8c-896c-1d468235a068", + "node-edge-point-uuid": "fbddc09f-dcca-4e44-af21-167ae92a5b32" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "869997f8-2347-47d6-88db-1141e891bc59", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221343-O-RU-22134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9693fa34-4f66-4e77-9a25-5ec686d59543", + "node-edge-point-uuid": "e760f790-05bf-448e-a8b6-a845db9668ea" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7fde49d1-10ef-4392-8086-7a152329a061", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221344-O-RU-22134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f9d452a4-94e5-4bfb-98c7-7328ade44a10", + "node-edge-point-uuid": "9c12e5e8-965f-4bca-91d8-61b0a0ac75f1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f396126b-9017-4e61-862d-b1986cff9f8d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221345-O-RU-22134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ac5ef69-0a7c-4745-81c0-0a95ff34acec", + "node-edge-point-uuid": "041ed5af-c49c-44b2-af6b-8cdf666bf166" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2d5515ec-c3cf-4355-8b37-791c199422aa", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221346-O-RU-22134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "99b1c487-51ea-4a71-93a9-90d24cf1616e", + "node-edge-point-uuid": "33608505-716b-48ac-bf3c-ba1e6d8e617a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a1abbe16-dd3e-47e1-95d4-3e444f550b7b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221347-O-RU-22134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5b2c78b6-68ac-4389-963f-2632719df6d5", + "node-edge-point-uuid": "82cb0918-4634-44a0-9ee2-796c00befbe6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "034d0416-06ed-4a89-91ef-f922e1473dff", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221348-O-RU-22134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bd49b500-c7ab-4eea-9a55-9c19a249eadb", + "node-edge-point-uuid": "5974a406-2414-4a96-a5f1-f00becb7a759" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8980fa39-a258-42c3-bde0-25c309a6062a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-221349-O-RU-22134" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "11f3a778-1f6f-4fb7-a7ae-c49732b3359e", + "node-edge-point-uuid": "231af1f4-209a-4726-8d4b-8e315d519bd3" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2dfafe88-2c38-48ff-ba67-1cef4893b507", + "node-edge-point-uuid": "d73b55f8-b208-4700-9124-b82eafd3ec4b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d228952c-8c1d-4813-b79e-939ca426a941", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-CU-UP-222-NEAR-RT-RIC-22" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "45f65655-cdb4-4984-9c80-b4f86ed1c592", + "node-edge-point-uuid": "72e68ac6-3e9e-4196-b8ee-97ca4d35b30b" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef00b7f1-c9b3-4607-a148-2d697034fb41", + "node-edge-point-uuid": "7831d0d8-e525-42c5-8c55-01369bb71692" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5e4ead2a-8154-49a6-8a53-361dc2407ebe", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2221-O-CU-UP-222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef00b7f1-c9b3-4607-a148-2d697034fb41", + "node-edge-point-uuid": "a1b6718a-f915-41a6-aa23-c527f808fba2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2abdc4bf-199b-44cd-8ebd-a15ee242e890", + "node-edge-point-uuid": "0496230d-f84a-4a79-a9a2-d1cb68134ec8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "be47972d-c9ed-4ce6-86ba-11ee6c8de4e4", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22211-O-DU-2221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2abdc4bf-199b-44cd-8ebd-a15ee242e890", + "node-edge-point-uuid": "aadb4381-69c4-4fb5-9ace-9d86501c6860" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "4268dfe2-4fce-4984-82cb-fc2fed4c4100" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6a8a94f3-c1a9-4011-96fa-b64ef400d9ce", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222111-O-RU-22211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "109ac2da-1f75-4fc1-a836-ee2ad5599432", + "node-edge-point-uuid": "48930d83-abe4-4abd-b416-a78790836caa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "bc3c0cdd-b0e4-4485-bdc1-d6889ac61b6d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222112-O-RU-22211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d6d57fc2-4c75-4c05-81f7-1e679f233ebb", + "node-edge-point-uuid": "b2702580-b8e9-42e1-8477-e3664bf73f61" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f40ed039-c6c2-4852-bce8-59a213ac54ed", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222113-O-RU-22211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9b6e7858-cb77-4c85-88f8-dcd4e7faccf6", + "node-edge-point-uuid": "0266a4aa-dbb2-46d1-b49e-40640579e3e1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8deb4f3c-6179-4817-adee-24223c3d2a36", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222114-O-RU-22211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "30901377-d8e0-489c-9e8f-e2819baca7dc", + "node-edge-point-uuid": "f56a6e85-7784-4a84-aa7c-86eceec7a615" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "0b796fe9-2a72-4ae0-b07f-b0e0ec64205e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222115-O-RU-22211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "56416a28-6149-4694-a036-b49a6fa43460", + "node-edge-point-uuid": "9e294014-c852-4423-9372-dc400e4aecf3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "eee2af4a-e2a3-4c42-9e2d-237bef98cddb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222116-O-RU-22211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c49a203c-7907-4ed5-a315-ff759ecbab4f", + "node-edge-point-uuid": "90d4f34b-a1a4-4f5a-b329-4d8c5188e844" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b3f58944-8d8c-4647-9a98-d937d08b9700", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222117-O-RU-22211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "dd684a46-5e3b-41e2-9337-0ec727b19716", + "node-edge-point-uuid": "581a806d-8d65-4a52-8663-83e687864259" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ec1df5ef-6ad8-4234-b313-50cec2a9f104", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222118-O-RU-22211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "97519051-910f-45e1-9798-d565ca0c63c8", + "node-edge-point-uuid": "7ef35ede-80f2-402f-927b-6cd5b6d2da29" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f07b6e42-652b-445e-95b0-947e39f63a00", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222119-O-RU-22211" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "840a46bb-407f-4f1f-a38e-ce563f2e72c5", + "node-edge-point-uuid": "b26fe148-f678-402c-ae22-530a88506cd2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5b5c3ba8-6f45-43f0-840e-d32bad08f3c6", + "node-edge-point-uuid": "bd308fb1-6735-4d0b-b2b7-dc1b531ca61a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e91586f0-6fea-4e4d-876b-d69a74e302e2", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22212-O-DU-2221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2abdc4bf-199b-44cd-8ebd-a15ee242e890", + "node-edge-point-uuid": "aadb4381-69c4-4fb5-9ace-9d86501c6860" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "7c4596b8-c48a-454e-8933-2c4c0a20fce6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "00a1025e-360b-4444-bccf-820ecb570a81", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222121-O-RU-22212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e893a032-6688-45a5-aa7c-7d5dbe8d5c73", + "node-edge-point-uuid": "cc2939c8-2ab3-4dd8-9980-a97dfe726d29" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6f5ea5a5-a050-4d6b-825c-9ce043d0f56f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222122-O-RU-22212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ddec8577-5b33-4545-8a36-02011c5e4b71", + "node-edge-point-uuid": "22653284-317d-438a-a278-a991031ed2ca" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "12208a67-e383-416c-9b7f-a8722b3630b9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222123-O-RU-22212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cdf73593-bbc1-4d22-9f72-d114d453a9d4", + "node-edge-point-uuid": "f29144a9-1f7d-47b8-8cb8-a9359c655807" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1dd485da-5f12-4c01-86e1-1c3b2a8580b5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222124-O-RU-22212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7d59c376-5aff-4ba0-8508-dab0d3f9d7c6", + "node-edge-point-uuid": "6afa6d56-4b56-40e5-b54e-bf3935a27a01" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "267e239b-e85b-4e02-91cb-47144d43d84f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222125-O-RU-22212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "23d7406d-df5e-467e-a57f-8fbb78889b35", + "node-edge-point-uuid": "d0ba00d9-102c-4e02-817c-2f6d07840e38" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "befb5de4-92e5-4f2a-8ec3-5129725f5aad", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222126-O-RU-22212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "435866ab-7c71-40b2-967d-6ae98b76ade6", + "node-edge-point-uuid": "619ff193-4b57-4ac0-a9e3-c9bdd35ff401" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ca4d8609-c64b-4b81-96af-5ea6aa01ab16", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222127-O-RU-22212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "06725e2c-999f-4ea8-87ba-02f48d02f0a7", + "node-edge-point-uuid": "79774608-d5b4-42ab-ae50-80421eb671fc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e127f680-d5b3-4eb7-8181-123b840bf390", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222128-O-RU-22212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "86f297cd-d42c-43de-9731-50c5e1cd5ac8", + "node-edge-point-uuid": "d77acb83-2046-4b32-9e88-468aef35b47b" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b131968b-dd89-4019-97f0-26fb22db2e0d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222129-O-RU-22212" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b8134bed-65c0-4386-a086-12587c70a21c", + "node-edge-point-uuid": "1262266e-dd87-4b3a-9ee1-3445371bfca0" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1a4e38e1-0e3c-4a80-bc51-50f0530e674a", + "node-edge-point-uuid": "6e445ac3-97ab-4fbd-b5d2-43ed0781bc45" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1c220870-580f-42f6-81aa-928d634d32fa", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22213-O-DU-2221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2abdc4bf-199b-44cd-8ebd-a15ee242e890", + "node-edge-point-uuid": "aadb4381-69c4-4fb5-9ace-9d86501c6860" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "80740c8e-885c-4638-b236-ff72deb282c0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1a609385-fde5-4362-b305-b1ace1c42d28", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222131-O-RU-22213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7328694f-20b1-42c3-9e86-1b839f2c8eeb", + "node-edge-point-uuid": "b069b131-3262-4aff-ab1b-ba019703c310" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e2fbe15f-4f82-431a-9588-7fa5646dfd0b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222132-O-RU-22213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d7a9f308-9c8a-42e1-b281-6d71d5be1a21", + "node-edge-point-uuid": "6d2b4174-bd6d-4a0e-9a75-2b7bcaf4699d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "96fd0f10-9fb7-479b-af27-4ee5ded1bcaa", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222133-O-RU-22213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c6f96494-8ebb-4b19-8738-e24af580fddc", + "node-edge-point-uuid": "cc4a27b7-cc08-4d3c-94aa-bc55c8e8c4ce" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b0138c43-94d5-4663-bfcd-7205a1ffbc91", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222134-O-RU-22213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "eed0808e-8340-4cec-b75c-fdf3f4a609d7", + "node-edge-point-uuid": "cf121399-e097-48c1-a851-f49a7ae56800" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6bf430a7-647d-43b6-890a-7facb84608df", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222135-O-RU-22213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f30f1580-29ff-44da-aabc-c0bd9cdbfe8b", + "node-edge-point-uuid": "f9067ede-bbd6-4b26-b56c-4f5bfd387b24" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c645363b-916b-4915-a0f7-89d2a113e159", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222136-O-RU-22213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4a52d817-b422-4aad-b51e-509d6ec2fa8d", + "node-edge-point-uuid": "ac40edad-3e6a-4e03-a37a-a53a1f200f0d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ecbf2e29-453f-404b-8fcf-389007270241", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222137-O-RU-22213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d4906a28-2445-464e-809e-5465f12fda76", + "node-edge-point-uuid": "e551e038-2044-4d0c-803d-b6972c035999" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "79e31921-e4f1-4304-b23f-46530f711b84", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222138-O-RU-22213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "736690b9-717d-4664-8d8a-b7e372c438c3", + "node-edge-point-uuid": "6e095a96-3c70-4ddf-b68b-5e56cfaac086" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "24ea78d1-a704-4d1f-9047-aa184fae1f80", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222139-O-RU-22213" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f18942f7-5b0d-4c1c-ac45-d052a03e390e", + "node-edge-point-uuid": "642c8e6a-d0b1-4fb5-ac3c-f417ed424311" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "de4e4894-870b-49e2-a974-58f53d66fe7b", + "node-edge-point-uuid": "e25fcf43-3b28-41c9-9d73-38d946e06780" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6ee13271-5014-48c5-9da2-815eee465ab5", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22214-O-DU-2221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2abdc4bf-199b-44cd-8ebd-a15ee242e890", + "node-edge-point-uuid": "aadb4381-69c4-4fb5-9ace-9d86501c6860" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "ee3c55f6-2cc6-41b6-9c1f-11e3fb086878" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "612befa6-904f-4d89-ab1e-7a97e0cd45e7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222141-O-RU-22214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "12b7cfd8-db74-4150-92b1-76ef69a5e84a", + "node-edge-point-uuid": "3a3d472a-e9f4-44ce-991f-849c0e458f4f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3c8a6f21-eae6-470b-bd20-52ee592e0353", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222142-O-RU-22214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5874896c-3c7f-4a2b-9a53-3df082194d9b", + "node-edge-point-uuid": "0cb311a1-7f4c-4ba5-a7e8-5068fa19c839" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7c84fc1a-c790-4028-9b8e-9c2a13d97ec5", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222143-O-RU-22214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "683749a0-cf2a-4efe-b5a1-a660865eb61f", + "node-edge-point-uuid": "4dcb1861-ab4f-4900-9c11-31cb3f577045" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9f1eaea7-c86f-4dc7-af66-e92f7040bda4", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222144-O-RU-22214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3da6b21a-e6cd-46ff-931d-7daccd08f882", + "node-edge-point-uuid": "5c920c32-ff79-4a17-aaaf-59ae64f68111" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b2067b1f-2975-4ca1-a6d1-7a6f39ee3e06", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222145-O-RU-22214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "79011c91-6590-47fb-85d7-d86ea38e4a5e", + "node-edge-point-uuid": "d29cd00f-d3c6-4fa6-bfe1-d12df814ee1e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "091e671b-9d0f-43b9-b72c-5d51a6a321a3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222146-O-RU-22214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c20415dd-fb89-40c2-b5a8-ea887598c36e", + "node-edge-point-uuid": "fa035d41-dbae-438b-b4fb-d92298248607" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ff316a9c-a2c6-4853-9cd3-1a755452f07a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222147-O-RU-22214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "36322b13-24c7-4474-b05e-f9489fbc068d", + "node-edge-point-uuid": "1c34cc49-3897-4cbb-8dc6-9a3c34fe6eff" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "89b3e3ce-44ba-402c-a437-fb42802c65bc", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222148-O-RU-22214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "43f9909a-9bb2-4d09-879e-d1ae9655268d", + "node-edge-point-uuid": "85b76bd6-139b-4e80-94e3-980c71e7664d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4b42dab5-7384-4ff0-a973-dae311a6050c", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222149-O-RU-22214" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1166ac68-7d8c-490a-9956-025b68e8ed9f", + "node-edge-point-uuid": "0eb71bdc-b0ec-4548-ae45-176d51c530f5" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c44c8302-f4db-43d9-a6f9-a67de825184b", + "node-edge-point-uuid": "5f4375b3-d6c1-4776-bc20-3b0ea1ae39c8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "247b7837-367a-4f8e-aa45-5bb570002c9b", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2222-O-CU-UP-222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef00b7f1-c9b3-4607-a148-2d697034fb41", + "node-edge-point-uuid": "a1b6718a-f915-41a6-aa23-c527f808fba2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "80a326ff-5f0a-4260-96c4-6d0604f127c9", + "node-edge-point-uuid": "6e71d6c4-9ecf-4ce9-9895-bfd4bbf45294" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e0e84619-cd76-4a1a-9b2b-4eb7373c9621", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22221-O-DU-2222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "80a326ff-5f0a-4260-96c4-6d0604f127c9", + "node-edge-point-uuid": "312e1ab9-4d95-425e-8485-64f08eb00745" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "3ef43a6d-16aa-4e33-8743-d457526c3bf0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "34296a10-2a27-40ef-bde0-1c5076a26d16", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222211-O-RU-22221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b410ed67-01f3-49c4-be2e-02ad5ad082ad", + "node-edge-point-uuid": "0b0a03fb-6028-4323-b16e-eba3806c3cc6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "dd2a1ae9-1087-497d-b67c-660ffc5c5319", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222212-O-RU-22221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "70bf2507-6cc9-42f9-b18f-463e94e66c6f", + "node-edge-point-uuid": "0a790964-accc-46c3-8a43-85ef5e2ae2b7" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1698e293-63e7-4874-812f-7d49f480fb12", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222213-O-RU-22221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "48c557df-8a00-4cca-8a95-d96721bccaad", + "node-edge-point-uuid": "5f659d57-6e75-445e-bc6c-3c64d8d8e8ce" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "953dde46-86ee-4393-9070-38f73a338b3e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222214-O-RU-22221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7f738806-7b0d-46d9-ab42-dbb3e5e77d2f", + "node-edge-point-uuid": "6dcba118-3444-4018-991c-3d14ae3f642d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3cd61a0b-3c69-4aca-9bab-cb871826191b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222215-O-RU-22221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "49eb7bc8-b3f3-4de2-9994-95bf49a83a4a", + "node-edge-point-uuid": "50832e7a-c4e2-499d-a669-ba0bda2d2efa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3e784e4d-1475-49be-b4d0-74ccd1b84ea0", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222216-O-RU-22221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b893be13-30dd-4fab-9568-f081bceb2c1c", + "node-edge-point-uuid": "d40c7344-f009-4782-bd55-9256e4ff8471" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "83076e01-d3bd-4661-87c2-919abb185358", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222217-O-RU-22221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27edac3d-aca0-4b8e-a81b-535d913d2f62", + "node-edge-point-uuid": "1d63da66-0d34-422d-b9ee-177433d8e701" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "321dc000-f740-4760-9b39-45e1263aec35", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222218-O-RU-22221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ce83ed04-c3d9-44ac-907c-acc28b055b8e", + "node-edge-point-uuid": "d1818607-b31d-43d2-9b6d-f6aee677dcb5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a1e99cd3-6283-418d-b898-13a6a18d454d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222219-O-RU-22221" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a8803eb-17c7-4bd3-86ce-c24f02c92253", + "node-edge-point-uuid": "0794d540-6767-424b-a1cc-675e36d1b523" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "3a0499d4-3268-49ca-879a-8e3bdf8be6b0", + "node-edge-point-uuid": "0c58c966-e9fe-42bb-9d71-3b7818f692ce" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ee8bc954-d077-4d62-afd9-f686c25c5a70", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22222-O-DU-2222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "80a326ff-5f0a-4260-96c4-6d0604f127c9", + "node-edge-point-uuid": "312e1ab9-4d95-425e-8485-64f08eb00745" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "bfc34234-0185-4f25-be1e-035bb5753dc0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "c9fa295a-6a8b-44bf-a716-fadb7c2901c1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222221-O-RU-22222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "34de5fa7-47e7-4796-a24e-ecedb1b07edf", + "node-edge-point-uuid": "d4cd5223-e29a-472e-8c40-b754b40ab53c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b9c9ef5f-b88e-4a88-9f92-afbd7f561025", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222222-O-RU-22222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60a50fb9-e065-42e3-a50b-f585427f0a58", + "node-edge-point-uuid": "550b4a4c-0888-4fba-9fbc-49152d0b556d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d590b0e3-0eee-403d-98fc-a177709b1963", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222223-O-RU-22222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "af079f14-5ff3-4546-a85b-f5351b267c2c", + "node-edge-point-uuid": "8fde028c-6aa6-4c58-b943-0e5d87028463" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "1de3cf0d-b9b4-4b86-a33f-eeab6da2b241", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222224-O-RU-22222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "0a0a5ee5-5220-4a45-932d-370138d4876a", + "node-edge-point-uuid": "d1b09640-58b2-4d5c-8e8c-02480d12295a" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5488c5ae-32a3-4bb0-87fa-f28f75a88c89", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222225-O-RU-22222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f6e614a5-0fa1-41ef-ac1c-83d8af00a708", + "node-edge-point-uuid": "fad4bf81-d3de-486a-b7f8-be822bf3d599" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f5f4cbae-7e16-41c1-a459-fa2e4505de8f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222226-O-RU-22222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "bbe0d462-f686-43cc-82ef-c1d524ae40ed", + "node-edge-point-uuid": "f1d5c4ce-e4a1-4140-bf54-51dd384f6211" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "196cb00f-b1df-428d-b2b3-c9efd273b716", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222227-O-RU-22222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "29d6cfdf-f5c9-4141-9567-5dc8a8b749db", + "node-edge-point-uuid": "09c3f238-3a69-49ed-8dda-7e54d5d70f51" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3c2e6a77-5a69-4553-bb13-09654be7a270", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222228-O-RU-22222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "054e317c-a04b-4b7a-8b77-8d5b195baeaa", + "node-edge-point-uuid": "6b534124-50b0-43f2-a649-f342b9c19bbd" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a7a8c6b4-e227-40a3-877e-87a4cdb965af", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222229-O-RU-22222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "27cb2154-97cb-4f75-a790-5f05ddce1cfb", + "node-edge-point-uuid": "a8f5cf95-c579-4e4a-b41d-7864ab5c25bb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "961ab1dd-ceb0-46da-8253-171e015384ae", + "node-edge-point-uuid": "34e17c4c-4f54-4e33-9cb2-3b2a12b68676" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "799a2566-5edd-458d-86db-9f90d3d7f5c2", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22223-O-DU-2222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "80a326ff-5f0a-4260-96c4-6d0604f127c9", + "node-edge-point-uuid": "312e1ab9-4d95-425e-8485-64f08eb00745" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "8889ec6d-a980-4ded-90f1-72aed41e0f8e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6cb18f5e-2361-438c-a2ee-f46a923eb1a8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222231-O-RU-22223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "105db036-70aa-4b72-835d-24c4482ab30f", + "node-edge-point-uuid": "312be370-782d-4ee2-b1d2-cfa753809876" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6954b3a1-3196-4f6a-9482-c0469ca1e3b3", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222232-O-RU-22223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8ca96627-b7b8-4fee-b39e-d77f5336f671", + "node-edge-point-uuid": "b51f2ecb-9c30-47c2-9179-a7794e800117" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9b870423-0841-4b25-a8f5-c8d1e441ec3e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222233-O-RU-22223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c19be469-4034-4504-93d1-af983e1d2839", + "node-edge-point-uuid": "096c2551-16be-4186-831e-c3a2721a7e29" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b18cbe62-4f5b-45b0-b5be-c0e1464ff262", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222234-O-RU-22223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b29a77a5-d9cb-4916-9c42-3d1b802c13ca", + "node-edge-point-uuid": "e4ab392a-8957-414a-a864-16a9b47ca941" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "139b28b6-d853-4478-a090-84e68505c317", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222235-O-RU-22223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "45b101d6-135a-4082-b0aa-ea6b7c2f4c10", + "node-edge-point-uuid": "7a2b61d4-1f28-4d1e-b4e8-0ec9d8df3ddb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "71fb34e7-c46c-4e50-90aa-9dc3e28f2f85", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222236-O-RU-22223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "4086d5c4-7aa6-4be3-b9df-098f81bc994e", + "node-edge-point-uuid": "f893e932-589f-4c05-9094-56adab9417b2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "49c5f00e-4fd2-4505-a667-30dc92073273", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222237-O-RU-22223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6fc3600d-d282-4767-9fd9-b2c48f832ab1", + "node-edge-point-uuid": "f4d9fed1-ab6d-4c38-aa85-2588cb37e267" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a6dd74f2-4d8c-4b6c-8fb2-fe008af97586", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222238-O-RU-22223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "73975a93-ef0c-44ab-9756-44fe90e40a6a", + "node-edge-point-uuid": "86cd0233-f5e8-4c15-af87-bbc364e7e948" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f7327c63-4544-4071-84b1-6d726db33417", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222239-O-RU-22223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "92f654d9-1e44-4d9e-984e-b98715c32b0c", + "node-edge-point-uuid": "3ff8dd00-322e-4c24-9e68-fd20265e073a" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "cbf88d06-4cea-44ab-b15f-c71025199e5d", + "node-edge-point-uuid": "9baba5f7-72de-42f6-9cbc-7adf70cc24a4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "40da4d1c-4acc-46a5-b0df-4dabe9436214", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22224-O-DU-2222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "80a326ff-5f0a-4260-96c4-6d0604f127c9", + "node-edge-point-uuid": "312e1ab9-4d95-425e-8485-64f08eb00745" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "ced93b76-20b6-4f79-bd53-36eb837a3179" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "22d1784a-a36d-42cb-9431-fedb040c84f7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222241-O-RU-22224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5bacd808-a6c4-4c96-bedd-488ca81b0eb4", + "node-edge-point-uuid": "203149a8-74ca-4709-a9d3-afeaabbb06c1" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "92abf1c5-6736-44d9-94a9-d5975e0123b2", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222242-O-RU-22224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "780edf93-b799-4365-b5ea-8f71a5f282f0", + "node-edge-point-uuid": "3aba0701-7646-4469-9664-39a2aca40b7c" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fbb08033-973b-42cd-ac6f-310a0846516d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222243-O-RU-22224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e095c024-da6b-4544-a81f-c5e805912c2e", + "node-edge-point-uuid": "3d15e2a2-b374-4487-babe-0123ba34aa50" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f7fea765-a161-4aae-aad1-31c3975ff41b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222244-O-RU-22224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f7ba3654-d2de-4809-95a8-014fe9f3f610", + "node-edge-point-uuid": "eeb9ac41-4c25-41cd-a1b1-e12315a44daa" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "6d3fae81-8481-4ed0-9d96-1e6f3f62d634", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222245-O-RU-22224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "279913a4-8f80-4792-978f-a3d1b94dff35", + "node-edge-point-uuid": "8f71a0a5-e2fb-4320-b56c-ab1367ee9b55" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "69cb1af2-8ec3-4071-b813-48e308a3099e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222246-O-RU-22224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8acd7078-e23e-43c7-957b-443011539015", + "node-edge-point-uuid": "dcd9b20b-34f4-446e-a2a2-17788d0d16b8" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7f91ea02-11ff-4cf7-b938-120d59f74e7f", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222247-O-RU-22224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7a42286c-f8ec-45e5-8a3f-308a9396fbbf", + "node-edge-point-uuid": "880439c9-e194-4770-8b44-79f835a83ee3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e27c1a80-fc04-46cc-9bd9-623b882bc4b6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222248-O-RU-22224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f9050511-f272-4a26-a8f7-6cd2e8740d25", + "node-edge-point-uuid": "ebc5092a-ba43-4249-9bac-e9da4af60146" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8f4450ba-f6c2-41e0-9313-185d79bf76ab", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222249-O-RU-22224" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "e5e2ec51-c8f0-4f43-b733-a8a9c58177fb", + "node-edge-point-uuid": "56664b94-e3c6-4e1d-b7a2-1ee8a5ff6350" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "7e70fe8d-2042-43f8-b3ad-c12c11167262", + "node-edge-point-uuid": "a2e115ba-51e3-4b8e-8b25-e5e276f2d5cc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "804e9b56-ac7a-445d-8071-596c39199a6e", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-DU-2223-O-CU-UP-222" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ef00b7f1-c9b3-4607-a148-2d697034fb41", + "node-edge-point-uuid": "a1b6718a-f915-41a6-aa23-c527f808fba2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ffae6ad-5bff-4504-bece-9e2ef60a5dd3", + "node-edge-point-uuid": "f56f662f-f0bd-4c69-a114-d6deba9e6fc5" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ef4d3ca3-c661-4593-baba-a9f514332e8a", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22231-O-DU-2223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ffae6ad-5bff-4504-bece-9e2ef60a5dd3", + "node-edge-point-uuid": "d568ae4d-2422-4f75-acc1-2df64ce1e1fb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "ef49363d-7a54-4e08-849b-3fe8f8da9365" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "101690b7-7718-46ce-9060-2261b2fa46d1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222311-O-RU-22231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1a308095-fd2c-4097-8c91-64e843cc17dd", + "node-edge-point-uuid": "dd2a3a98-c899-4fb9-8f10-09619f66cf36" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "230bcba0-cbfa-44ae-8968-c59cce775832", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222312-O-RU-22231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "233b3bec-5287-42f9-84ac-70ccaea81871", + "node-edge-point-uuid": "b82c38ed-663d-4ac8-bbde-dabbe8ca5fe3" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7300b50d-142a-4451-8438-b4f68943063e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222313-O-RU-22231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "9db9112c-194b-4297-8e76-fd53934cfa7c", + "node-edge-point-uuid": "cde562f8-dc37-4efa-ab59-aac8d0368182" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "72be383f-609c-4481-898c-069cee157191", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222314-O-RU-22231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5570540f-d9f3-4f84-bcdc-f8e189f1e1dc", + "node-edge-point-uuid": "8c6f6766-1b83-4b07-b5ec-013c36c5b333" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a3d014d2-a004-4d02-ab83-675f6c241501", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222315-O-RU-22231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f96ab81d-1a6d-4695-baa9-8d836f760f0c", + "node-edge-point-uuid": "41d39f9c-7551-4b93-9eba-5f9058201da0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b8ca9688-4a3a-4abd-82db-0826d15b5123", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222316-O-RU-22231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "fbca3656-49a5-42a3-b9bc-bcb02386fa34", + "node-edge-point-uuid": "64682311-58f1-4986-8d39-648263d0becd" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5ce12816-8f3f-4bcc-ae54-177ca6949c25", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222317-O-RU-22231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "684239f8-2ec7-4007-b7ca-3bcf01e7494d", + "node-edge-point-uuid": "c160e64e-e02f-4ad1-b4fc-710fff44772f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ea1dcb13-daa2-4116-aa3a-a1c43a3cefa1", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222318-O-RU-22231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5e0b0b85-cf23-4611-b856-a555efc3c14b", + "node-edge-point-uuid": "436fbd47-2bc0-43cf-8e4b-1e3ef6996c9f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "a39374d7-474d-474c-8b43-ca9634a90b5b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222319-O-RU-22231" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "516af365-759b-4cb7-b92d-732ea89b37dc", + "node-edge-point-uuid": "1bbfe7bb-6919-434d-b964-573ecbef84a2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "6a610d64-de40-4563-a810-0327336fade1", + "node-edge-point-uuid": "6edf0242-6b71-476b-8eb1-993a3f246fcb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "27e1195a-e8c4-406c-94f4-758a371dfc58", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22232-O-DU-2223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ffae6ad-5bff-4504-bece-9e2ef60a5dd3", + "node-edge-point-uuid": "d568ae4d-2422-4f75-acc1-2df64ce1e1fb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "711aa007-e659-4152-a608-a0b3427411eb" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "fa46ea44-01b0-46d6-9356-78c0e33a0e73", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222321-O-RU-22232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "59bee037-d8ae-44ca-b2e3-cc912bf6b04b", + "node-edge-point-uuid": "48c40dd7-4678-4e6d-8929-6c7a4e2fc8c2" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d3cdc720-143a-4e5e-ba4c-6cade67a826e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222322-O-RU-22232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "eea34611-d44a-4d43-88b0-e98d770ec949", + "node-edge-point-uuid": "ae1406b0-9f56-4bb2-9087-84158160699f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "97872dc9-b1af-4ee2-81ae-0434c2c069aa", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222323-O-RU-22232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "54882920-f5d9-4625-9ffd-591bd73845f0", + "node-edge-point-uuid": "6400b59e-2f25-4b44-b02b-370ade067741" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "3c50f609-f613-4352-8bf6-2787e9f06aed", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222324-O-RU-22232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "77131fb1-6f63-4573-abcb-d3286d1d0e20", + "node-edge-point-uuid": "0c94e386-96ee-4ab0-a9b2-8023cd337705" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "7610a35e-a168-4a1c-ae11-9f6841f1ade8", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222325-O-RU-22232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "30886895-2e01-40c0-bbdf-8cb39f3c6da9", + "node-edge-point-uuid": "496ab5af-6e4f-492c-a97c-43b655862eda" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e261cd11-99fa-4ae1-83c1-4d550acd7f0e", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222326-O-RU-22232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "8987ea7e-4679-4cd7-80f4-3f3713acbecc", + "node-edge-point-uuid": "4db4c4ae-cc6b-4501-b5fe-6c417500bc37" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8dcd0df9-0a9e-4721-81eb-92442d50c05b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222327-O-RU-22232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "95b54b6c-6466-4f3d-86f9-93f00d940ca1", + "node-edge-point-uuid": "ac3d0d9e-3f38-4f60-b211-28525fd00adc" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "2274ce4f-39dd-4372-ba3e-be7d121f33f9", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222328-O-RU-22232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "43706b1e-c2a6-45a7-ba5e-5d926ee1e239", + "node-edge-point-uuid": "ca7c8849-7683-44d9-8621-ce56b75afd35" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "21a9d60d-38f5-4b46-956d-267406ab9bfb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222329-O-RU-22232" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "927fe326-d824-4b24-a475-75e87cfb5925", + "node-edge-point-uuid": "d489d3cf-f5ef-4064-a4d6-293fc8c4b3f2" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5b42e058-9d40-4d1f-b402-618d02366267", + "node-edge-point-uuid": "3fcf7236-a524-4f1f-8e22-f27b5b743388" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f04b9f07-4ff9-47d4-9592-5d331c71238f", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22233-O-DU-2223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ffae6ad-5bff-4504-bece-9e2ef60a5dd3", + "node-edge-point-uuid": "d568ae4d-2422-4f75-acc1-2df64ce1e1fb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "1f7dcc01-ce3d-4e6a-863b-63a3f70448bf" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "dea97e67-6436-47d5-9c82-ef2ec1239a49", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222331-O-RU-22233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "d7b6a86c-d916-4205-9729-45386e3edfb7", + "node-edge-point-uuid": "df05f1f5-04f0-4484-8f72-fcf013b4d382" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "8613bf5b-c0c5-49db-b1aa-267915184eef", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222332-O-RU-22233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "354c56c1-9126-4f66-905e-b8a033ec9944", + "node-edge-point-uuid": "4fa8dbe9-afe7-4ef8-9386-26a3cf9c9892" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "af49aa2a-ac2f-48e0-b12c-6b0b0d631efe", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222333-O-RU-22233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "461b9943-cd6e-46b0-b05e-1be110ede67b", + "node-edge-point-uuid": "2fcb2392-2080-4a98-9c0f-acbb7f22e730" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "831296b0-b05a-4dfa-82f5-88e9bc0b3633", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222334-O-RU-22233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "94c83613-6487-4f56-aa02-19b368210175", + "node-edge-point-uuid": "718bfd1a-b257-4090-a505-4d5005fc487f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "9eaf250a-40a5-44f4-b947-72099f73824a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222335-O-RU-22233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "60817af6-2626-40dd-808b-8c680905e85c", + "node-edge-point-uuid": "89389ffe-25ab-41fd-a23c-7d6ab793dc02" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5919e92c-66c7-4ad7-b45d-84450b081933", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222336-O-RU-22233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a38da3ca-8832-4f35-b5c2-24917a0fb2b4", + "node-edge-point-uuid": "70e4cef2-0f85-4c5b-a2d5-05c00d52827e" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "f2a89623-d2a8-40d5-ade7-0f48acc49d7b", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222337-O-RU-22233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "f2cc3eea-5516-4ddd-a8b3-6dd7d29593ac", + "node-edge-point-uuid": "05af3a5e-a348-4a48-8a67-fe656bd6e3e0" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e8a2e9e9-98af-43a3-b54e-b8d089781e09", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222338-O-RU-22233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "5a6b679c-4e16-418d-9683-b666037c6fd1", + "node-edge-point-uuid": "2b2e7bd2-4adf-4fe0-82d4-d5bc654d4f21" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "802003e3-a110-4759-b339-82ef4c800bb7", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222339-O-RU-22233" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1e726b1f-01ab-4ada-a5e2-ee940789cb3d", + "node-edge-point-uuid": "81fdeef3-4820-4940-87b3-0f366dc99587" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "494d4784-af94-419a-8b88-cc31a8f7bf00", + "node-edge-point-uuid": "b5fa361e-0554-43e8-ac3d-cb3c75fcd70d" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "cce6c623-9980-4940-a726-e53d962bb430", + "name": [ + { + "value-name": "topology-link-name", + "value": "O-RU-22234-O-DU-2223" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "1ffae6ad-5bff-4504-bece-9e2ef60a5dd3", + "node-edge-point-uuid": "d568ae4d-2422-4f75-acc1-2df64ce1e1fb" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "2092cf10-c9f8-42f1-ba2d-79ddbe153958" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e392da4d-171c-4b48-9eac-cb9315640a7d", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222341-O-RU-22234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "636664f3-9ce5-41e0-a829-f1948fd99713", + "node-edge-point-uuid": "f18ae3f3-483c-425b-b4f5-50cba25a5503" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "d1837b26-c851-48cc-b171-6de9c886b8d6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222342-O-RU-22234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "c358d90a-5da7-47cb-bef9-767509ede420", + "node-edge-point-uuid": "e4568ca4-f159-4d00-8896-8c9409283524" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "5acc8090-e97a-4b0f-af34-f93a2496985a", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222343-O-RU-22234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ebf8e6b2-497e-4632-aad6-91364ecaf522", + "node-edge-point-uuid": "bacd2be8-ff1f-4f29-86fc-c2e807aebadd" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "ce624459-6969-484b-a9c0-732380590fdb", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222344-O-RU-22234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "a891a576-6803-43ac-8d1d-61dc8b5a3446", + "node-edge-point-uuid": "6786904f-9a8c-4e1e-acb3-d81535428695" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "4ee41d55-a8d1-4ff5-becf-1058961097ac", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222345-O-RU-22234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "18d10e63-9a4e-48c5-8ca6-847438fc45f9", + "node-edge-point-uuid": "cfe30700-dcdc-4364-8a61-750562d2c9c9" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "667d5166-9dc5-4987-9881-03d4639b8d41", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222346-O-RU-22234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "2d8fbfba-94db-4369-b6c9-cdda8d73667e", + "node-edge-point-uuid": "7281382b-796a-490a-a035-362387682a5f" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "af3c8c80-b548-4539-911f-1d584ffbaece", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222347-O-RU-22234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "696f5abc-e211-4286-884f-80d9d94d320f", + "node-edge-point-uuid": "e44975e0-8cba-43d6-a93d-479e878995f4" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "e05df8cb-5e49-402c-9acc-db9d15e621be", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222348-O-RU-22234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "ae7884c0-6f3a-448a-9b9d-bc244752a8ca", + "node-edge-point-uuid": "402178f9-b1bc-4cea-aeaf-db999f073eaf" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + }, + { + "uuid": "b83314b5-a7ee-4478-902a-5b269dda5fe6", + "name": [ + { + "value-name": "topology-link-name", + "value": "UE-222349-O-RU-22234" + } + ], + "node-edge-point": [ + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b2fb983b-76ed-4d68-bb06-d7c5082bc622", + "node-edge-point-uuid": "5bf12085-cb87-4300-8cb5-8fdaebcb3352" + }, + { + "topology-uuid": "5eb592cc-b307-494e-8574-c477a5e38b2d", + "node-uuid": "b3b6982a-3eb5-4c03-8492-3481136f7cba", + "node-edge-point-uuid": "063e879b-b552-4b8c-b0dc-349801115ae6" + } + ], + "latency-characteristic": [ + { + "traffic-property-name": "property-1", + "queing-latency-characteristic": "queue-1", + "fixed-latency-characteristic": "latency-1", + "jitter-characteristic": "jitter-1", + "wander-characteristic": "wander-1" + } + ], + "layer-protocol-name": [ + "ETH" + ], + "direction": "BIDIRECTIONAL", + "lifecycle-state": "INSTALLED", + "operational-state": "ENABLED", + "risk-characteristic": [ + { + "risk-characteristic-name": "risk-name", + "risk-identifier-list": [ + "risk-1" + ] + } + ], + "validation-mechanism": [ + { + "validation-mechanism": "mechanism-1", + "validation-robustness": "very-robust", + "layer-protocol-adjacency-validated": "validated" + } + ], + "administrative-state": "LOCKED", + "cost-characteristic": [ + { + "cost-name": "cost", + "cost-algorithm": "alg1", + "cost-value": "value-1" + } + ], + "transitioned-layer-protocol-name": [ + "layer-protocol-2---should-it-be-an-uuid?", + "layer-protocol-1---should-it-be-an-uuid?" + ] + } + ], + "layer-protocol-name": [ + "ETH" + ], + "name": [ + { + "value-name": "slice-name", + "value": "Public Safety" + } + ] + } + ] + } + } +} \ No newline at end of file -- 2.16.6