From 06ee022de809edb39c86b4e5802506c615a597ee Mon Sep 17 00:00:00 2001 From: Brendan Hassett Date: Tue, 31 Mar 2026 12:03:51 +0000 Subject: [PATCH 1/2] Fix issues with alarm identification --- OpenAPI/TS28567_CclNrm.yaml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/OpenAPI/TS28567_CclNrm.yaml b/OpenAPI/TS28567_CclNrm.yaml index f8f6c70d..034259fe 100644 --- a/OpenAPI/TS28567_CclNrm.yaml +++ b/OpenAPI/TS28567_CclNrm.yaml @@ -109,7 +109,7 @@ components: faultManagementAlarmIdList: type: array items: - type: string + $ref: '#/components/schemas/Alarm' faultManagementBackUpObjectRequirement: type: boolean faultManagementIsolateObjectRequirement: @@ -151,7 +151,7 @@ components: generatedAlarmResultList: type: array items: - type: string + $ref: '#/components/schemas/GeneratedAlarmResult' faultManagementCCLReportTime: $ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTime' @@ -168,6 +168,8 @@ components: type: array items: type: string + alarmListRef: + $ref: 'TS28623_ComDefs.yaml#/components/schemas/Dn' CCLScopeCoordinationCapability: type: object @@ -200,6 +202,15 @@ components: $ref: 'TS28623_ComDefs.yaml#/components/schemas/Dn' cCLGoalBreachPercentage: type: integer + + Alarm: + type: object + properties: + alarmListRef: + $ref: 'TS28623_ComDefs.yaml#/components/schemas/Dn' + alarmId: + type: string + #-------Definition of the generic dataType --------------# -- GitLab From c976a1c941c1f0ea2e9e4aa1ca2a07be3785f206 Mon Sep 17 00:00:00 2001 From: Brendan Hassett Date: Thu, 16 Apr 2026 12:19:37 +0000 Subject: [PATCH 2/2] Updated datatype to AlarmRef --- OpenAPI/TS28567_CclNrm.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenAPI/TS28567_CclNrm.yaml b/OpenAPI/TS28567_CclNrm.yaml index 034259fe..48a8f05e 100644 --- a/OpenAPI/TS28567_CclNrm.yaml +++ b/OpenAPI/TS28567_CclNrm.yaml @@ -109,7 +109,7 @@ components: faultManagementAlarmIdList: type: array items: - $ref: '#/components/schemas/Alarm' + $ref: '#/components/schemas/AlarmRef' faultManagementBackUpObjectRequirement: type: boolean faultManagementIsolateObjectRequirement: @@ -203,7 +203,7 @@ components: cCLGoalBreachPercentage: type: integer - Alarm: + AlarmRef: type: object properties: alarmListRef: -- GitLab