Add watchdog reset function for O-RUs
[oam.git] / solution / smo / apps / flows / data / flows.json
index 515810f..56c18e6 100644 (file)
@@ -2,9 +2,25 @@
     {
         "id": "51e83a0892da060e",
         "type": "tab",
-        "label": "VES-Messages",
+        "label": "Event Streaming (VES)",
         "disabled": false,
-        "info": "Sends a VES message with body defined by 3GPP TS 28.532.\n",
+        "info": "Sends a VES messages with body defined by 3GPP TS 28.532.\n",
+        "env": []
+    },
+    {
+        "id": "c5746e29f53f72ce",
+        "type": "tab",
+        "label": "Message Topics",
+        "disabled": false,
+        "info": "Subscribes to Kafka topics ",
+        "env": []
+    },
+    {
+        "id": "7ba02ed596e8cde5",
+        "type": "tab",
+        "label": "OpenFronthaul",
+        "disabled": false,
+        "info": "",
         "env": []
     },
     {
@@ -43,7 +59,7 @@
         "payload": "",
         "payloadType": "date",
         "x": 120,
-        "y": 160,
+        "y": 460,
         "wires": [
             [
                 "b5533c10604af5a6",
         "type": "function",
         "z": "51e83a0892da060e",
         "name": "vesHeader",
-        "func": "const timeStamp = new Date(msg.payload);\nconst eventType = msg.topic;\nlet domain = \"stndDefined\";\n// handle domain expecption for 'pnfRegistration'\nif (eventType === 'pnfRegistration') {\n    domain = eventType;\n} \nconst nfNamingCode = env.get('APP_NETWORK_FUNCTION_ID');\nconst namespaces = {\n    notifyHeartbeat: '3GPP-Heartbeat',\n    notifyFileReady: 'file-ready',\n    pnfRegistration: undefined\n};\n\nmsg.topic = \"commonEventHeader\"\nmsg.payload = {\n    domain: domain,\n    eventType: eventType,\n    eventId:[nfNamingCode, eventType, msg._msgid].join('_'),\n    eventName: [domain, eventType].join('_'),\n    sequence: Number(timeStamp),\n    priority: \"Low\",\n    reportingEntityId: \"c2b7d6e9-ee35-459a-ab8e-717a6fc1fde6\",\n    reportingEntityName: global.get('os').hostname(),\n    sourceId: \"378e9904-6d39-40ea-9994-0596fe2235a3\",\n    sourceName: env.get('APP_SOURCE'),\n    startEpochMicrosec: timeStamp.getTime() * 1000,\n    lastEpochMicrosec: timeStamp.getTime() * 1000,\n    nfNamingCode: nfNamingCode,\n    nfVendorName: env.get('APP_VENDOR'),\n    timeZoneOffset: \"+00:00\",\n    stndDefinedNamespace: namespaces[eventType],\n    version: \"4.1\",\n    vesEventListenerVersion: \"7.2.1\"\n}\nreturn msg;",
+        "func": "const timeStamp = new Date(msg.payload);\nconst eventType = msg.topic;\nlet domain = \"stndDefined\";\n// handle domain expecption for 'pnfRegistration'\nif (eventType === 'pnfRegistration') {\n    domain = eventType;\n} \nconst nfNamingCode = env.get('APP_NETWORK_FUNCTION_ID');\nconst namespaces = {\n    pnfRegistration: undefined,\n    o1NotifyPnfRegistration: 'o1-notify-pnf-registration',\n    oRanScDuHelloWorldPmStreaming: 'o-ran-sc-du-hello-world-pm-streaming-oas3',\n    notifyHeartbeat: '3GPP-Heartbeat',\n    notifyFileReady: 'file-ready'\n};\nconst topic = namespaces[eventType] || msg.topic;\n\nmsg.topic = \"commonEventHeader\"\nmsg.payload = {\n    domain: domain,\n    eventType: eventType,\n    eventId:[nfNamingCode, eventType, msg._msgid].join('_'),\n    eventName: [domain, eventType].join('_'),\n    sequence: Number(timeStamp),\n    priority: \"Low\",\n    reportingEntityId: \"c2b7d6e9-ee35-459a-ab8e-717a6fc1fde6\",\n    reportingEntityName: global.get('os').hostname(),\n    sourceId: \"378e9904-6d39-40ea-9994-0596fe2235a3\",\n    sourceName: env.get('APP_SOURCE'),\n    startEpochMicrosec: timeStamp.getTime() * 1000,\n    lastEpochMicrosec: timeStamp.getTime() * 1000,\n    nfNamingCode: nfNamingCode,\n    nfVendorName: env.get('APP_VENDOR'),\n    timeZoneOffset: \"+00:00\",\n    stndDefinedNamespace: topic,\n    version: \"4.1\",\n    vesEventListenerVersion: \"7.2.1\"\n}\nreturn msg;",
         "outputs": 1,
         "noerr": 0,
         "initialize": "",
         "finalize": "",
         "libs": [],
-        "x": 350,
-        "y": 40,
+        "x": 430,
+        "y": 260,
         "wires": [
             [
                 "f65b1c13e0243ef6"
         "type": "function",
         "z": "51e83a0892da060e",
         "name": "vesStndDefindBody",
-        "func": "const timeStamp = new Date(msg.payload);\nconst startTime = new Date(Math.floor(Number(timeStamp) / 900000) * 900000);\nconst endTime = new Date(Number(startTime) + 900000);\nconst paddy = (num, padlen, padchar) => {\n    const pad_char = typeof padchar !== 'undefined' ? padchar : '0';\n    const pad = new Array(1 + padlen).join(pad_char);\n    return (pad + num).slice(-pad.length);\n}\nconst fileStartTime = [\n    paddy(startTime.getFullYear(), 4),\n    paddy(startTime.getMonth() + 1, 2),\n    paddy(startTime.getDate(), 2),\n    '.',\n    paddy(startTime.getHours(), 2),\n    paddy(startTime.getMinutes(), 2),\n    '+0000'\n].join('');\nconst fileEndTime = [\n    paddy(endTime.getHours(), 2),\n    paddy(endTime.getMinutes(), 2),\n    '+0000'\n].join('');\nconst fileLocation = ['/pm-data-files/A', fileStartTime, '-', fileEndTime, '_', env.get('APP_NETWORK_FUNCTION_ID'), '.xml'].join('');\nmsg.payload = {\n    schemaReference: 'https://forge.3gpp.org/rep/sa5/MnS/-/raw/Rel-16/OpenAPI/TS28532_FileDataReportingMnS.yaml#components/schemas/NotifyFileReady',\n    stndDefinedFieldsVersion: '1.0',\n    data: {\n        href: global.get('os').hostname(),\n        notificationId: Number(startTime),\n        notificationType: msg.topic,\n        eventTime: timeStamp.toISOString(),\n        systemDN: '/',\n        fileInfoList: [\n            {\n                fileLocation: fileLocation,\n                fileSize: 1234,\n                fileReadyTime: startTime.toISOString(),\n                fileExpirationTime: endTime.toISOString(),\n                fileCompression: 'no',\n                fileFormat: 'xml',\n                fileDataType: 'Performance'\n            }\n        ],\n        additionalText: 'Have fun!'\n    }\n};\nmsg.topic = 'stndDefinedFields';\nreturn msg;",
+        "func": "const timeStamp = new Date(msg.payload);\nconst startTime = new Date(Math.floor(Number(timeStamp) / 900000) * 900000);\nconst endTime = new Date(Number(startTime) + 900000);\nconst paddy = (num, padlen, padchar) => {\n    const pad_char = typeof padchar !== 'undefined' ? padchar : '0';\n    const pad = new Array(1 + padlen).join(pad_char);\n    return (pad + num).slice(-pad.length);\n}\nconst fileStartTime = [\n    paddy(startTime.getFullYear(), 4),\n    paddy(startTime.getMonth() + 1, 2),\n    paddy(startTime.getDate(), 2),\n    '.',\n    paddy(startTime.getHours(), 2),\n    paddy(startTime.getMinutes(), 2),\n    '+0000'\n].join('');\nconst fileEndTime = [\n    paddy(endTime.getHours(), 2),\n    paddy(endTime.getMinutes(), 2),\n    '+0000'\n].join('');\nconst fileLocation = ['/pm-data-files/A', fileStartTime, '-', fileEndTime, '_', env.get('APP_NETWORK_FUNCTION_ID'), '.xml'].join('');\nmsg.payload = {\n    schemaReference: 'https://forge.3gpp.org/rep/sa5/MnS/raw/Rel-18/OpenAPI/TS28532_FileDataReportingMnS.yaml#components/schemas/NotifyFileReady',\n    stndDefinedFieldsVersion: '1.0',\n    data: {\n        href: global.get('os').hostname(),\n        notificationId: Number(startTime),\n        notificationType: msg.topic,\n        eventTime: timeStamp.toISOString(),\n        systemDN: '/',\n        fileInfoList: [\n            {\n                fileLocation: fileLocation,\n                fileSize: 1234,\n                fileReadyTime: startTime.toISOString(),\n                fileExpirationTime: endTime.toISOString(),\n                fileCompression: 'no',\n                fileFormat: 'xml',\n                fileDataType: 'Performance'\n            }\n        ],\n        additionalText: 'Have fun!'\n    }\n};\nmsg.topic = 'stndDefinedFields';\nreturn msg;",
         "outputs": 1,
         "noerr": 0,
         "initialize": "",
         "finalize": "",
         "libs": [],
-        "x": 370,
-        "y": 160,
+        "x": 470,
+        "y": 460,
         "wires": [
             [
                 "f65b1c13e0243ef6"
         "reduceInit": "",
         "reduceInitType": "",
         "reduceFixup": "",
-        "x": 550,
-        "y": 120,
+        "x": 690,
+        "y": 280,
         "wires": [
             [
                 "1d6949a57bce82ab"
         "initialize": "",
         "finalize": "",
         "libs": [],
-        "x": 720,
-        "y": 120,
+        "x": 840,
+        "y": 280,
         "wires": [
             [
                 "27e1d8d1e9b8fd93",
         "authType": "basic",
         "senderr": false,
         "headers": [],
-        "x": 910,
-        "y": 120,
+        "x": 1030,
+        "y": 280,
         "wires": [
             [
                 "f3412bcb9e134063"
         "targetType": "msg",
         "statusVal": "",
         "statusType": "auto",
-        "x": 1120,
-        "y": 120,
+        "x": 1220,
+        "y": 280,
         "wires": []
     },
     {
         "initialize": "",
         "finalize": "",
         "libs": [],
-        "x": 340,
+        "x": 440,
         "y": 80,
         "wires": [
             [
         "targetType": "msg",
         "statusVal": "",
         "statusType": "auto",
-        "x": 930,
-        "y": 160,
+        "x": 1050,
+        "y": 320,
         "wires": []
     },
     {
         "id": "7d589030272c0a94",
         "type": "inject",
         "z": "51e83a0892da060e",
+        "d": true,
         "name": "notifyHeartbeat",
         "props": [
             {
                 "vt": "str"
             }
         ],
-        "repeat": "",
+        "repeat": "3",
         "crontab": "",
-        "once": false,
+        "once": true,
         "onceDelay": 0.1,
         "topic": "notifyHeartbeat",
         "payload": "",
         "payloadType": "date",
-        "x": 120,
-        "y": 120,
+        "x": 130,
+        "y": 420,
         "wires": [
             [
                 "b5533c10604af5a6",
         "type": "function",
         "z": "51e83a0892da060e",
         "name": "vesStndDefindBody",
-        "func": "const timeStamp = new Date(msg.payload);\nmsg.payload = {\n    schemaReference: 'https://forge.3gpp.org/rep/sa5/MnS/-/raw/Rel-16/OpenAPI/TS28532_HeartbeatNtf.yaml#components/schemas/NotifyHeartbeat',\n    stndDefinedFieldsVersion: '1.0',\n    data: {\n        href: global.get('os').hostname(),\n        notificationId: Number(timeStamp),\n        notificationType: msg.topic,\n        eventTime: timeStamp.toISOString(),\n        systemDN: \"/\",\n        heartbeatNtfPeriod: 120\n    }\n};\nmsg.topic = \"stndDefinedFields\";\nreturn msg;",
+        "func": "const timeStamp = new Date(msg.payload);\nmsg.payload = {\n    schemaReference: 'https://forge.3gpp.org/rep/sa5/MnS/raw/Rel-18/OpenAPI/TS28532_HeartbeatNtf.yaml#components/schemas/NotifyHeartbeat',\n    stndDefinedFieldsVersion: '1.0',\n    data: {\n        href: global.get('os').hostname(),\n        notificationId: Number(timeStamp),\n        notificationType: msg.topic,\n        eventTime: timeStamp.toISOString(),\n        systemDN: \"/\",\n        heartbeatNtfPeriod: 120\n    }\n};\nmsg.topic = \"stndDefinedFields\";\nreturn msg;",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 470,
+        "y": 420,
+        "wires": [
+            [
+                "f65b1c13e0243ef6"
+            ]
+        ]
+    },
+    {
+        "id": "1bada25ea9a5aa01",
+        "type": "comment",
+        "z": "51e83a0892da060e",
+        "name": "from SA5 R-18 branch",
+        "info": "",
+        "x": 120,
+        "y": 380,
+        "wires": []
+    },
+    {
+        "id": "f4f4670363ec760f",
+        "type": "comment",
+        "z": "51e83a0892da060e",
+        "name": "from O-RAN-SC",
+        "info": "",
+        "x": 100,
+        "y": 140,
+        "wires": []
+    },
+    {
+        "id": "e4dc4647c388ab77",
+        "type": "comment",
+        "z": "51e83a0892da060e",
+        "name": "from ONAP",
+        "info": "",
+        "x": 90,
+        "y": 40,
+        "wires": []
+    },
+    {
+        "id": "fb6413675e22dc71",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "name": "o1NotifyPnfRegistration",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o1NotifyPnfRegistration",
+        "payload": "",
+        "payloadType": "date",
+        "x": 140,
+        "y": 180,
+        "wires": [
+            [
+                "b5533c10604af5a6",
+                "51f5fa54867b7e65"
+            ]
+        ]
+    },
+    {
+        "id": "73beab79d5024f4b",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "name": "oRanScDuHelloWorldPmStreaming",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "oRanScDuHelloWorldPmStreaming",
+        "payload": "",
+        "payloadType": "date",
+        "x": 180,
+        "y": 220,
+        "wires": [
+            [
+                "5c6f93626fac58b5",
+                "b5533c10604af5a6"
+            ]
+        ]
+    },
+    {
+        "id": "51f5fa54867b7e65",
+        "type": "function",
+        "z": "51e83a0892da060e",
+        "name": "vesStndDefindBody",
+        "func": "const timeStamp = new Date(msg.payload);\nmsg.payload = {\n    schemaReference: 'https://gerrit.o-ran-sc.org/r/gitweb?p=scp/oam/modeling.git;a=blob_plain;f=data-model/yang/working/o-ran-sc/template/yes-o1-notify-pnf-registration.yang',\n    stndDefinedFieldsVersion: '1.0',\n    data: {\n        'object-class': 'managed-element',\n        'object-instance': global.get('os').hostname(),\n        'notification-identifier': Number(timeStamp),\n        'notification-type': msg.topic,\n        'event-time': timeStamp.toISOString(),\n        systemDN: \"/\",\n        'vendor-pen': '57272',\n        'vendor-name': 'highstreet technologies USA Corp.',\n        'oam-host': global.get('os').networkInterfaces()['eth0'][0].address || global.get('os').hostname(),\n        'oam-port': 830,\n        'unit-family': 'O-RAN-SC',\n        'unit-type': 'PNF2',\n        'restart-reason': 'system-reboot',\n        'serial-number': 'O-RAN-SC-PNF2-10.10.10.11-pnf2 BestInClass',\n        'macAddress': global.get('os').networkInterfaces()['eth0'][0].mac || '00:00:00:00:00:00',\n        'modelNumber': 'O-RAN-SC Model',\n        'softwareVersion': '2.3.5',\n        'manufactureDate': '2021-01-16',\n        'lastServiceDate': '2021-03-26',\n        'transport-protocol': 'SSH',\n        'username': 'netconf',\n        'password': 'netconf!',\n        'reconnect-on-changed-schema': 'false',\n        'sleep-factor': '1.5',\n        'tcpOnly': 'false',\n        'connection-timeout': '20000',\n        'max-connection-attempts': '100',\n        'between-attempts-timeout': '2000',\n        'keepalive-delay': '120'\n    }\n};\nmsg.topic = \"stndDefinedFields\";\nreturn msg;",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 470,
+        "y": 180,
+        "wires": [
+            [
+                "f65b1c13e0243ef6"
+            ]
+        ]
+    },
+    {
+        "id": "5c6f93626fac58b5",
+        "type": "function",
+        "z": "51e83a0892da060e",
+        "name": "vesStndDefindBody",
+        "func": "const timeStamp = new Date(msg.payload);\nmsg.payload = {\n  schemaReference: 'https://gerrit.o-ran-sc.org/r/gitweb?p=scp/oam/modeling.git;a=blob_plain;f=data-model/oas3/experimental/o-ran-sc-du-hello-world-pm-streaming-oas3.yaml#components/schemas/performance-measurement-job',\n    stndDefinedFieldsVersion: '1.0',\n    data: {\n        id: 'id:' + Number(timeStamp),\n        'start-time': timeStamp.toISOString(),\n        'administrative-state': 'unlocked',\n        'operational-state': 'enabled',\n        'user-label': 'pm-kpis',\n        'job-tag': '1a0827b7-25e7-4292-959f-6b8ab46f14c2',\n        'granularity-period': 900,\n        measurements: [\n          {\n            'measurement-type-instance-reference': 'user-equipment-average-throughput-downlink',\n            value: 300000000,\n            unit: 'kBis/s'\n          },\n          {\n            'measurement-type-instance-reference': 'user-equipment-average-throughput-uplink',\n            value: 300000000,\n            unit: 'kBis/s'\n          }\n        ]\n    }\n};\nmsg.topic = \"stndDefinedFields\";\nreturn msg;\n\n",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 470,
+        "y": 220,
+        "wires": [
+            [
+                "f65b1c13e0243ef6"
+            ]
+        ]
+    },
+    {
+        "id": "456597d0477d239f",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "name": "o-ran-file-management:file-download-event",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-file-management:file-download-event",
+        "payload": "",
+        "payloadType": "date",
+        "x": 820,
+        "y": 820,
+        "wires": [
+            [
+                "f40d1d16c7044edc",
+                "b5533c10604af5a6"
+            ]
+        ]
+    },
+    {
+        "id": "f40d1d16c7044edc",
+        "type": "function",
+        "z": "51e83a0892da060e",
+        "name": "vesStndDefindBody",
+        "func": "const eventTime = new Date(msg.payload).toISOString();\nmsg.payload = {\n    schemaReference: 'https://gerrit.o-ran-sc.org/r/gitweb?p=scp/oam/modeling.git;a=blob_plain;f=data-model/yang/published/o-ran/ru-fh/o-ran-file-management.yang#components/schemas/ofhm-event-stream',\n    stndDefinedFieldsVersion: '1.0',\n    data: {\n        'ietf:notification': {\n            'eventTime': eventTime,\n            'o-ran-file-management:file-download-event': {\n                'local-logical-file-path': 'o-ran/log',\n                'remote-file-path': 'ftpes://username@ftpes.oam.smo.o-ran-sc/downloads',\n                'status': 'FAILURE',\n                'reject-reason': 'FTPes Server not reachable.'\n            }\n        }\n    }\n};\nmsg.topic = 'stndDefinedFields';\nreturn msg;",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 1150,
+        "y": 820,
+        "wires": [
+            [
+                "f65b1c13e0243ef6"
+            ]
+        ]
+    },
+    {
+        "id": "3d8f8180f204d804",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "name": "o-ran-file-management:file-upload-notification",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-file-management:file-upload-notification",
+        "payload": "",
+        "payloadType": "date",
+        "x": 830,
+        "y": 860,
+        "wires": [
+            [
+                "d473bf42d8169599",
+                "b5533c10604af5a6"
+            ]
+        ]
+    },
+    {
+        "id": "d473bf42d8169599",
+        "type": "function",
+        "z": "51e83a0892da060e",
+        "name": "vesStndDefindBody",
+        "func": "const eventTime = new Date(msg.payload).toISOString();\nmsg.payload = {\n    schemaReference: 'https://gerrit.o-ran-sc.org/r/gitweb?p=scp/oam/modeling.git;a=blob_plain;f=data-model/yang/published/o-ran/ru-fh/o-ran-file-management.yang#components/schemas/ofhm-event-stream',\n    stndDefinedFieldsVersion: '1.0',\n    data: {\n        'ietf:notification': {\n            'eventTime': eventTime,\n            'o-ran-file-management:file-upload-notification': {\n                'local-logical-file-path': 'o-ran/log',\n                'remote-file-path': 'ftpes://username@ftpes.oam.smo.o-ran-sc/downloads',\n                'status': 'FAILURE',\n                'reject-reason': 'FTPes Server not reachable.'\n            }\n        }\n    }\n};\nmsg.topic = 'stndDefinedFields';\nreturn msg;",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 1150,
+        "y": 860,
+        "wires": [
+            [
+                "f65b1c13e0243ef6"
+            ]
+        ]
+    },
+    {
+        "id": "ec85f2a64f79450d",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "name": "o-ran-supervision:supervision-notification",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-supervision:supervision-notification",
+        "payload": "",
+        "payloadType": "date",
+        "x": 820,
+        "y": 1140,
+        "wires": [
+            [
+                "96ea9b3d7d4121dc",
+                "b5533c10604af5a6"
+            ]
+        ]
+    },
+    {
+        "id": "96ea9b3d7d4121dc",
+        "type": "function",
+        "z": "51e83a0892da060e",
+        "name": "vesStndDefindBody",
+        "func": "const eventTime = new Date(msg.payload).toISOString();\nmsg.payload = {\n    schemaReference: 'https://gerrit.o-ran-sc.org/r/gitweb?p=scp/oam/modeling.git;a=blob_plain;f=data-model/yang/published/o-ran/ru-fh/o-ran-supervision.yang#components/schemas/ofhm-event-stream',\n    stndDefinedFieldsVersion: '1.0',\n    data: {\n        'ietf:notification': {\n            'eventTime': eventTime,\n            'o-ran-supervision:supervision-notification': {\n                'session-id': 999999\n            }\n        }\n    }\n};\nmsg.topic = 'stndDefinedFields';\nreturn msg;",
         "outputs": 1,
         "noerr": 0,
         "initialize": "",
         "finalize": "",
         "libs": [],
-        "x": 370,
-        "y": 120,
+        "x": 1150,
+        "y": 1140,
         "wires": [
             [
                 "f65b1c13e0243ef6"
             ]
         ]
+    },
+    {
+        "id": "027098b9ba7cd1e6",
+        "type": "comment",
+        "z": "51e83a0892da060e",
+        "name": "from OpenFronthaul Management-Plane",
+        "info": "",
+        "x": 780,
+        "y": 380,
+        "wires": []
+    },
+    {
+        "id": "e80ff3c876a343e5",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-ald-port:dc-enabled-status-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-ald-port:dc-enabled-status-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 820,
+        "y": 420,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "c61fe1f3bdb954d5",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-ald-port:overcurrent-report",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-ald-port:overcurrent-report",
+        "payload": "",
+        "payloadType": "date",
+        "x": 790,
+        "y": 460,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "939ac153e888cc93",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-antenna-calibration:antenna-calibration-coordinated",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-antenna-calibration:antenna-calibration-coordinated",
+        "payload": "",
+        "payloadType": "date",
+        "x": 870,
+        "y": 500,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "f7834ee33e7731fb",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-antenna-calibration:antenna-calibration-multiple-time-resource-params",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-antenna-calibration:antenna-calibration-multiple-time-resource-params",
+        "payload": "",
+        "payloadType": "date",
+        "x": 930,
+        "y": 540,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "8e98d432fcaef200",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-antenna-calibration:antenna-calibration-required",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-antenna-calibration:antenna-calibration-required",
+        "payload": "",
+        "payloadType": "date",
+        "x": 860,
+        "y": 580,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "554cb2ce5934b36c",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-antenna-calibration:antenna-calibration-result",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-antenna-calibration:antenna-calibration-result",
+        "payload": "",
+        "payloadType": "date",
+        "x": 850,
+        "y": 620,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "391ce0bfa3b8003d",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-beamforming:beamforming-information-update",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-beamforming:beamforming-information-update",
+        "payload": "",
+        "payloadType": "date",
+        "x": 850,
+        "y": 660,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "966ca15e87b419f5",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-beamforming:capability-group-beamforming-information-update",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-beamforming:capability-group-beamforming-information-update",
+        "payload": "",
+        "payloadType": "date",
+        "x": 900,
+        "y": 700,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "243cffacec890e26",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-beamforming:predefined-beam-tilt-offset-complete",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-beamforming:predefined-beam-tilt-offset-complete",
+        "payload": "",
+        "payloadType": "date",
+        "x": 860,
+        "y": 740,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "843c4093e2ddd914",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-externalio:external-input-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-externalio:external-input-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 810,
+        "y": 780,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "627b31335d7e5b6f",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-fm:alarm-notif",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-fm:alarm-notif",
+        "payload": "",
+        "payloadType": "date",
+        "x": 750,
+        "y": 900,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "87c1e3e0e87bd7c1",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-laa-operations:measurement-result",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-laa-operations:measurement-result",
+        "payload": "",
+        "payloadType": "date",
+        "x": 820,
+        "y": 940,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "27d98684362bee02",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-performance-management:measurement-result-stats",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-performance-management:measurement-result-stats",
+        "payload": "",
+        "payloadType": "date",
+        "x": 870,
+        "y": 980,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "03292a70960f7d50",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-software-management:activation-event",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-software-management:activation-event",
+        "payload": "",
+        "payloadType": "date",
+        "x": 830,
+        "y": 1020,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "652dbf9c0ef73057",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-software-management:download-event",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-software-management:download-event",
+        "payload": "",
+        "payloadType": "date",
+        "x": 830,
+        "y": 1060,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "0636add6c6d4d5e2",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-software-management:install-event",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-software-management:install-event",
+        "payload": "",
+        "payloadType": "date",
+        "x": 820,
+        "y": 1100,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "4c274d02a62c7565",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-sync:gnss-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-sync:gnss-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 780,
+        "y": 1180,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "ad0e319d109512e7",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-sync:ptp-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-sync:ptp-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 780,
+        "y": 1220,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "de24c11aa05ce94e",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-sync:synce-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-sync:synce-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 790,
+        "y": 1260,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "a9b33c01b841cc78",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-sync:synchronization-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-sync:synchronization-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 820,
+        "y": 1300,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "f4a87018c664902f",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-trace:trace-log-generated",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-trace:trace-log-generated",
+        "payload": "",
+        "payloadType": "date",
+        "x": 790,
+        "y": 1340,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "7cbe4e4faa26098b",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-uplane-conf:rx-array-carriers-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-uplane-conf:rx-array-carriers-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 840,
+        "y": 1420,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "a5eeb9d399c203ca",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-troubleshooting:troubleshooting-log-generated",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-troubleshooting:troubleshooting-log-generated",
+        "payload": "",
+        "payloadType": "date",
+        "x": 850,
+        "y": 1380,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "b9d72e03c66c78b3",
+        "type": "inject",
+        "z": "51e83a0892da060e",
+        "d": true,
+        "name": "o-ran-uplane-conf:tx-array-carriers-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-uplane-conf:tx-array-carriers-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 840,
+        "y": 1460,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "910dfec7eb74df65",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "name": "pnfRegistration",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "pnfRegistration",
+        "payload": "",
+        "payloadType": "date",
+        "x": 240,
+        "y": 80,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "562063a080cb99d6",
+        "type": "debug",
+        "z": "c5746e29f53f72ce",
+        "name": "eventData",
+        "active": false,
+        "tosidebar": true,
+        "console": false,
+        "tostatus": false,
+        "complete": "payload",
+        "targetType": "msg",
+        "statusVal": "",
+        "statusType": "auto",
+        "x": 1150,
+        "y": 220,
+        "wires": []
+    },
+    {
+        "id": "172060688d87f510",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "notifyHeartbeat",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "5",
+        "crontab": "",
+        "once": true,
+        "onceDelay": 0.1,
+        "topic": "notifyHeartbeat",
+        "payload": "",
+        "payloadType": "date",
+        "x": 230,
+        "y": 320,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "311c3b5d3d73fc24",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "name": "notifyFileReady",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "notifyFileReady",
+        "payload": "",
+        "payloadType": "date",
+        "x": 240,
+        "y": 360,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "5437e3fdfca300c9",
+        "type": "http request",
+        "z": "c5746e29f53f72ce",
+        "name": "",
+        "method": "GET",
+        "ret": "txt",
+        "paytoqs": "ignore",
+        "url": "",
+        "tls": "7b2f4859e5963695",
+        "persist": true,
+        "proxy": "",
+        "insecureHTTPParser": true,
+        "authType": "",
+        "senderr": false,
+        "headers": [],
+        "x": 670,
+        "y": 220,
+        "wires": [
+            [
+                "dc576b6355478428"
+            ]
+        ]
+    },
+    {
+        "id": "dc576b6355478428",
+        "type": "function",
+        "z": "c5746e29f53f72ce",
+        "name": "JSON",
+        "func": "const string = msg.payload;\nconst array = JSON.parse(string);\nif (Array.isArray(array)) {\n    msg.payload = array.map( (item) => {\n        if (typeof item === 'string' || item instanceof String) {\n            return JSON.parse(item);\n        }\n    });\n} else {\n    msg.payload = array;\n}\nreturn msg;",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 830,
+        "y": 220,
+        "wires": [
+            [
+                "2a2e05d79287f4a0"
+            ]
+        ]
+    },
+    {
+        "id": "e5f66f4bd6777ca0",
+        "type": "function",
+        "z": "c5746e29f53f72ce",
+        "name": "SET msg.url",
+        "func": "const base = 'https://messages.smo.o-ran-sc.org';\nconst path = 'events';\nconst urlMapping = {\n    pnfRegistration: \"unauthenticated.VES_PNFREG_OUTPUT\",\n    o1NotifyPnfRegistration: \"unauthenticated.VES_O1_NOTIFY_PNF_REGISTRATION_OUTPUT\",\n    oRanScDuHelloWorldPmStreaming: \"unauthenticated.VES_O_RAN_SC_HELLO_WORLD_PM_STREAMING_OUTPUT\",\n    notifyHeartbeat: \"unauthenticated.SEC_3GPP_HEARTBEAT_OUTPUT\",\n    notifyFileReady: \"unauthenticated.VES_FILE_READY_OUTPUT\",\n    oRanOpenfrontManagementPlane: \"unauthenticated.VES_O_RAN_SC_OPENFRONTHAUL_OUTPUT\"\n};\nconst urlTopic = urlMapping[msg.topic] || msg.topic.replace(':', '-');\nmsg.url = [base, path, urlTopic, '1','1'].join('/');\nreturn msg;",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 490,
+        "y": 220,
+        "wires": [
+            [
+                "5437e3fdfca300c9"
+            ]
+        ]
+    },
+    {
+        "id": "42275e9c12f8e52b",
+        "type": "comment",
+        "z": "c5746e29f53f72ce",
+        "name": "from O-RAN-SC",
+        "info": "",
+        "x": 100,
+        "y": 140,
+        "wires": []
+    },
+    {
+        "id": "e07fa97ebc66dce0",
+        "type": "comment",
+        "z": "c5746e29f53f72ce",
+        "name": "from ONAP",
+        "info": "",
+        "x": 90,
+        "y": 40,
+        "wires": []
+    },
+    {
+        "id": "44b8c2cc138777f1",
+        "type": "comment",
+        "z": "c5746e29f53f72ce",
+        "name": "from SA5 R-18 branch",
+        "info": "",
+        "x": 120,
+        "y": 280,
+        "wires": []
+    },
+    {
+        "id": "4480e5473a65a757",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "name": "oRanScDuHelloWorldPmStreaming",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "oRanScDuHelloWorldPmStreaming",
+        "payload": "",
+        "payloadType": "date",
+        "x": 180,
+        "y": 220,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "52f22ee054e5b4ac",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "name": "o1NotifyPnfRegistration",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o1NotifyPnfRegistration",
+        "payload": "",
+        "payloadType": "date",
+        "x": 220,
+        "y": 180,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "3051f52553efaaa4",
+        "type": "http request",
+        "z": "c5746e29f53f72ce",
+        "name": "",
+        "method": "GET",
+        "ret": "txt",
+        "paytoqs": "ignore",
+        "url": "https://messages.smo.o-ran-sc.org/topics",
+        "tls": "7b2f4859e5963695",
+        "persist": true,
+        "proxy": "",
+        "insecureHTTPParser": true,
+        "authType": "",
+        "senderr": false,
+        "headers": [
+            {
+                "keyType": "other",
+                "keyValue": "Accept",
+                "valueType": "other",
+                "valueValue": "application/json"
+            }
+        ],
+        "x": 670,
+        "y": 180,
+        "wires": [
+            [
+                "dc576b6355478428"
+            ]
+        ]
+    },
+    {
+        "id": "0acceacb99b7981a",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "name": "Topics?",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "topics",
+        "payload": "",
+        "payloadType": "date",
+        "x": 510,
+        "y": 180,
+        "wires": [
+            [
+                "3051f52553efaaa4"
+            ]
+        ]
+    },
+    {
+        "id": "34b7ac222692e06d",
+        "type": "comment",
+        "z": "c5746e29f53f72ce",
+        "name": "from OpenFronthaul Management-Plane",
+        "info": "",
+        "x": 580,
+        "y": 280,
+        "wires": []
+    },
+    {
+        "id": "25a3eca83bbc3489",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "name": "o-ran-supervision:supervision-notification",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "5",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-supervision:supervision-notification",
+        "payload": "",
+        "payloadType": "date",
+        "x": 620,
+        "y": 1040,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "0194d014ef8f6c5e",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "name": "o-ran-file-management:file-upload-notification",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-file-management:file-upload-notification",
+        "payload": "",
+        "payloadType": "date",
+        "x": 630,
+        "y": 760,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "775aacf9e2cc0285",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "name": "o-ran-file-management:file-download-event",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-file-management:file-download-event",
+        "payload": "",
+        "payloadType": "date",
+        "x": 620,
+        "y": 720,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "3e3be17a65a7d1bf",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-ald-port:dc-enabled-status-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-ald-port:dc-enabled-status-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 620,
+        "y": 320,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "665c45e5ccd1c9cb",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-ald-port:overcurrent-report",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-ald-port:overcurrent-report",
+        "payload": "",
+        "payloadType": "date",
+        "x": 590,
+        "y": 360,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "5520ce3b83578f17",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-antenna-calibration:antenna-calibration-coordinated",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-antenna-calibration:antenna-calibration-coordinated",
+        "payload": "",
+        "payloadType": "date",
+        "x": 670,
+        "y": 400,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "fda3090fb4f1e9d4",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-antenna-calibration:antenna-calibration-multiple-time-resource-params",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-antenna-calibration:antenna-calibration-multiple-time-resource-params",
+        "payload": "",
+        "payloadType": "date",
+        "x": 730,
+        "y": 440,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "2551bb6c9746a7c2",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-antenna-calibration:antenna-calibration-required",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-antenna-calibration:antenna-calibration-required",
+        "payload": "",
+        "payloadType": "date",
+        "x": 660,
+        "y": 480,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "0dcc72d0235e6336",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-antenna-calibration:antenna-calibration-result",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-antenna-calibration:antenna-calibration-result",
+        "payload": "",
+        "payloadType": "date",
+        "x": 650,
+        "y": 520,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "0abafa5c1a4ebd33",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-beamforming:beamforming-information-update",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-beamforming:beamforming-information-update",
+        "payload": "",
+        "payloadType": "date",
+        "x": 650,
+        "y": 560,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "d74c5f1885485d8c",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-beamforming:capability-group-beamforming-information-update",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-beamforming:capability-group-beamforming-information-update",
+        "payload": "",
+        "payloadType": "date",
+        "x": 700,
+        "y": 600,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "8d755b355a3d5557",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-beamforming:predefined-beam-tilt-offset-complete",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-beamforming:predefined-beam-tilt-offset-complete",
+        "payload": "",
+        "payloadType": "date",
+        "x": 660,
+        "y": 640,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "6ebe4693c580ae00",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-externalio:external-input-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-externalio:external-input-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 610,
+        "y": 680,
+        "wires": [
+            []
+        ]
+    },
+    {
+        "id": "89144928a6ead625",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-fm:alarm-notif",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-fm:alarm-notif",
+        "payload": "",
+        "payloadType": "date",
+        "x": 550,
+        "y": 800,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "8ebca0cd456a9763",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-laa-operations:measurement-result",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-laa-operations:measurement-result",
+        "payload": "",
+        "payloadType": "date",
+        "x": 620,
+        "y": 840,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "4778511387bc7449",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-performance-management:measurement-result-stats",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-performance-management:measurement-result-stats",
+        "payload": "",
+        "payloadType": "date",
+        "x": 670,
+        "y": 880,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "c106623d629fbe54",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-software-management:activation-event",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-software-management:activation-event",
+        "payload": "",
+        "payloadType": "date",
+        "x": 630,
+        "y": 920,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "4db0e5b915d76ddb",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-software-management:download-event",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-software-management:download-event",
+        "payload": "",
+        "payloadType": "date",
+        "x": 630,
+        "y": 960,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "8d3fab47729a807d",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-software-management:install-event",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-software-management:install-event",
+        "payload": "",
+        "payloadType": "date",
+        "x": 620,
+        "y": 1000,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "7ac87519cb59151d",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-sync:gnss-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-sync:gnss-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 580,
+        "y": 1080,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "55725b18e27c1a27",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-sync:ptp-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-sync:ptp-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 580,
+        "y": 1120,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "dde01e699dec844f",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-sync:synce-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-sync:synce-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 590,
+        "y": 1160,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "5457d995823e58f6",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-sync:synchronization-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-sync:synchronization-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 620,
+        "y": 1200,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "ca9f765b3838d5ff",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-trace:trace-log-generated",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-trace:trace-log-generated",
+        "payload": "",
+        "payloadType": "date",
+        "x": 590,
+        "y": 1240,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "0a837c4beaa140e0",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-uplane-conf:rx-array-carriers-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-uplane-conf:rx-array-carriers-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 640,
+        "y": 1320,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "3dfb5349f08c5ea9",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-troubleshooting:troubleshooting-log-generated",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-troubleshooting:troubleshooting-log-generated",
+        "payload": "",
+        "payloadType": "date",
+        "x": 650,
+        "y": 1280,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "030a6e7e6371402e",
+        "type": "inject",
+        "z": "c5746e29f53f72ce",
+        "d": true,
+        "name": "o-ran-uplane-conf:tx-array-carriers-state-change",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "o-ran-uplane-conf:tx-array-carriers-state-change",
+        "payload": "",
+        "payloadType": "date",
+        "x": 640,
+        "y": 1360,
+        "wires": [
+            [
+                "e5f66f4bd6777ca0"
+            ]
+        ]
+    },
+    {
+        "id": "2a2e05d79287f4a0",
+        "type": "function",
+        "z": "c5746e29f53f72ce",
+        "name": "Provider",
+        "func": "global.set('topicData', msg.payload)\nreturn msg;",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 980,
+        "y": 220,
+        "wires": [
+            [
+                "562063a080cb99d6"
+            ]
+        ]
+    },
+    {
+        "id": "c5648c1528804847",
+        "type": "inject",
+        "z": "7ba02ed596e8cde5",
+        "name": "supervision-watchdog-reset for O-RU-11221",
+        "props": [
+            {
+                "p": "payload"
+            },
+            {
+                "p": "topic",
+                "vt": "str"
+            }
+        ],
+        "repeat": "",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "supervision-watchdog-reset",
+        "payload": "[\"O-RU-11221\"]",
+        "payloadType": "json",
+        "x": 230,
+        "y": 100,
+        "wires": [
+            [
+                "2bd693b8c7e5a3cb"
+            ]
+        ]
+    },
+    {
+        "id": "329e838eb4bf63f4",
+        "type": "function",
+        "z": "7ba02ed596e8cde5",
+        "name": "ResetActionData",
+        "func": "const base = 'https://odlux.oam.smo.o-ran-sc.org';\nconst path = 'rests/operations/network-topology:network-topology/topology=topology-netconf/node=';\nconst nodeId = msg.payload;\nconst mount = 'yang-ext:mount';\nconst action = 'o-ran-supervision:supervision-watchdog-reset';\n\nmsg.url = [base,path + nodeId, mount, action].join('/');\nmsg.payload = { \n  \"o-ran-supervision:input\": \n    {\n      \"supervision-notification-interval\": 60, \n      \"guard-timer-overhead\": 10\n    }\n}\nreturn msg;",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 570,
+        "y": 220,
+        "wires": [
+            [
+                "1a4b6a4ec23c8f9f",
+                "2bd693b8c7e5a3cb"
+            ]
+        ]
+    },
+    {
+        "id": "1a4b6a4ec23c8f9f",
+        "type": "http request",
+        "z": "7ba02ed596e8cde5",
+        "name": "RESTCONF request",
+        "method": "POST",
+        "ret": "txt",
+        "paytoqs": "ignore",
+        "url": "",
+        "tls": "7b2f4859e5963695",
+        "persist": true,
+        "proxy": "",
+        "insecureHTTPParser": true,
+        "authType": "basic",
+        "senderr": false,
+        "headers": [
+            {
+                "keyType": "other",
+                "keyValue": "Accept",
+                "valueType": "other",
+                "valueValue": "application/json"
+            },
+            {
+                "keyType": "other",
+                "keyValue": "Content-Type",
+                "valueType": "other",
+                "valueValue": "application/json"
+            }
+        ],
+        "x": 800,
+        "y": 220,
+        "wires": [
+            [
+                "eb6c2de759c8eb54"
+            ]
+        ]
+    },
+    {
+        "id": "eb6c2de759c8eb54",
+        "type": "debug",
+        "z": "7ba02ed596e8cde5",
+        "name": "Response",
+        "active": true,
+        "tosidebar": true,
+        "console": false,
+        "tostatus": false,
+        "complete": "payload",
+        "targetType": "msg",
+        "statusVal": "",
+        "statusType": "auto",
+        "x": 1000,
+        "y": 220,
+        "wires": []
+    },
+    {
+        "id": "0d3ade9a80560c04",
+        "type": "inject",
+        "z": "7ba02ed596e8cde5",
+        "name": "Every 5s",
+        "props": [],
+        "repeat": "5",
+        "crontab": "",
+        "once": false,
+        "onceDelay": 0.1,
+        "topic": "",
+        "x": 120,
+        "y": 140,
+        "wires": [
+            [
+                "5322d78ad66fcb96"
+            ]
+        ]
+    },
+    {
+        "id": "5322d78ad66fcb96",
+        "type": "function",
+        "z": "7ba02ed596e8cde5",
+        "name": "Consumer (new Data?)",
+        "func": "const topicData = global.get('topicData');\nmsg.payload = topicData.map(event => {\n    if (event.event.commonEventHeader.stndDefinedNamespace === 'o-ran-supervision:supervision-notification')\n        return event.event.commonEventHeader.sourceName;\n}).filter(element => {\n    return element !== undefined;\n});\nglobal.set('topicData', []);\nreturn msg;",
+        "outputs": 1,
+        "noerr": 0,
+        "initialize": "",
+        "finalize": "",
+        "libs": [],
+        "x": 310,
+        "y": 140,
+        "wires": [
+            [
+                "2bd693b8c7e5a3cb"
+            ]
+        ]
+    },
+    {
+        "id": "2bd693b8c7e5a3cb",
+        "type": "loop",
+        "z": "7ba02ed596e8cde5",
+        "name": "Loop through O-RUs",
+        "kind": "enum",
+        "count": "",
+        "initial": "1",
+        "step": "1",
+        "condition": "",
+        "conditionType": "js",
+        "when": "before",
+        "enumeration": "payload",
+        "enumerationType": "msg",
+        "limit": "",
+        "loopPayload": "loop-val",
+        "finalPayload": "final-last",
+        "x": 580,
+        "y": 140,
+        "wires": [
+            [],
+            [
+                "329e838eb4bf63f4"
+            ]
+        ]
+    },
+    {
+        "id": "f7dc363e5421d1cf",
+        "type": "comment",
+        "z": "7ba02ed596e8cde5",
+        "name": "Supervision",
+        "info": "",
+        "x": 90,
+        "y": 40,
+        "wires": []
+    },
+    {
+        "id": "a72d8f5e9683dd39",
+        "type": "comment",
+        "z": "7ba02ed596e8cde5",
+        "name": "The Consumer checks for data on the message router provided by the \"Massage Topics\" flow.",
+        "info": "The Consumer checks for data on the message router provided by the \"Massage Topics\" flow.",
+        "x": 520,
+        "y": 260,
+        "wires": []
     }
 ]
\ No newline at end of file