From 9f53d2b1a22bcfa42af2e96fb75a98b1201337e4 Mon Sep 17 00:00:00 2001 From: sunse Date: Wed, 12 Jan 2022 13:48:11 +0000 Subject: [PATCH 1/2] fix validation issue "items: string" Update 5gcNrm.yaml --- OpenAPI/5gcNrm.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/OpenAPI/5gcNrm.yaml b/OpenAPI/5gcNrm.yaml index ef6a600b4..2f6304902 100644 --- a/OpenAPI/5gcNrm.yaml +++ b/OpenAPI/5gcNrm.yaml @@ -220,7 +220,8 @@ components: $ref: 'genericNrm.yaml#/components/schemas/NFType' allowedNfDomains: type: array - items: string + items: + type: string allowedNSSAIs: type: array items: @@ -233,17 +234,20 @@ components: type: integer nfSetIdList: type: array - items: string + items: + type: string servingScope: type: array - items: string + items: + type: string nfSetRecoveryTimeList: type: array items: $ref: 'comDefs.yaml#/components/schemas/DateTime' scpDomains: type: array - items: string + items: + type: string vendorId: type: string SEPPType: -- GitLab From 0a48090e0702b8b9a47b2b585375c29789774e2f Mon Sep 17 00:00:00 2001 From: ruiyue Date: Thu, 21 Oct 2021 09:16:19 +0200 Subject: [PATCH 2/2] Update nrNrm.yaml --- OpenAPI/nrNrm.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/OpenAPI/nrNrm.yaml b/OpenAPI/nrNrm.yaml index fc74e258d..7c628a2ac 100644 --- a/OpenAPI/nrNrm.yaml +++ b/OpenAPI/nrNrm.yaml @@ -671,6 +671,8 @@ components: $ref: '#/components/schemas/DRACHOptimizationFunction-Single' DMROFunction: $ref: '#/components/schemas/DMROFunction-Single' + DLBOFunction: + $ref: '#/components/schemas/DLBOFunction-Single' DPCIConfigurationFunction: $ref: '#/components/schemas/DPCIConfigurationFunction-Single' CPCIConfigurationFunction: @@ -706,6 +708,8 @@ components: $ref: '#/components/schemas/DRACHOptimizationFunction-Single' DMROFunction: $ref: '#/components/schemas/DMROFunction-Single' + DLBOFunction: + $ref: '#/components/schemas/DLBOFunction-Single' DPCIConfigurationFunction: $ref: '#/components/schemas/DPCIConfigurationFunction-Single' CPCIConfigurationFunction: @@ -873,6 +877,8 @@ components: $ref: '#/components/schemas/DESManagementFunction-Single' DMROFunction: $ref: '#/components/schemas/DMROFunction-Single' + DLBOFunction: + $ref: '#/components/schemas/DLBOFunction-Single' NrCellCu-Single: allOf: @@ -907,6 +913,8 @@ components: $ref: '#/components/schemas/DESManagementFunction-Single' DMROFunction: $ref: '#/components/schemas/DMROFunction-Single' + DLBOFunction: + $ref: '#/components/schemas/DLBOFunction-Single' CESManagementFunction: $ref: '#/components/schemas/CESManagementFunction-Single' DPCIConfigurationFunction: @@ -1413,6 +1421,20 @@ components: $ref: '#/components/schemas/MinimumTimeBetweenHoTriggerChange' tstoreUEcntxt: $ref: '#/components/schemas/TstoreUEcntxt' + DLBOFunction-Single: + allOf: + - $ref: 'genericNrm.yaml#/components/schemas/Top' + - type: object + properties: + attributes: + type: object + properties: + dlboControl: + type: boolean + maximumDeviationHoTrigger: + $ref: '#/components/schemas/MaximumDeviationHoTrigger' + minimumTimeBetweenHoTriggerChange: + $ref: '#/components/schemas/MinimumTimeBetweenHoTriggerChange' DPCIConfigurationFunction-Single: allOf: @@ -1969,6 +1991,7 @@ components: - $ref: '#/components/schemas/DESManagementFunction-Single' - $ref: '#/components/schemas/DRACHOptimizationFunction-Single' - $ref: '#/components/schemas/DMROFunction-Single' + - $ref: '#/components/schemas/DLBOFunction-Single' - $ref: '#/components/schemas/DPCIConfigurationFunction-Single' - $ref: '#/components/schemas/CPCIConfigurationFunction-Single' - $ref: '#/components/schemas/CESManagementFunction-Single' -- GitLab