From bba333dd9f5a053917d70e48f2560a46af904c6c Mon Sep 17 00:00:00 2001 From: sunse Date: Fri, 5 Nov 2021 13:29:35 +0100 Subject: [PATCH 1/3] Rel17_CR0627 NS specific authentication, Update sliceNrm.yaml --- OpenAPI/sliceNrm.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/OpenAPI/sliceNrm.yaml b/OpenAPI/sliceNrm.yaml index bf6b4d71c..48d584283 100644 --- a/OpenAPI/sliceNrm.yaml +++ b/OpenAPI/sliceNrm.yaml @@ -298,6 +298,8 @@ components: $ref: '#/components/schemas/DeterministicComm' survivalTime: type: string + nSSAA: + $ref: '#/components/schemas/Nssaa' RANSliceSubnetProfile: type: object properties: @@ -476,6 +478,8 @@ components: $ref: '#/components/schemas/SliceSimultaneousUse' energyEfficiency: $ref: '#/components/schemas/EnergyEfficiency' + nSSAA: + $ref: '#/components/schemas/Nssaa' SliceProfile: type: object properties: @@ -517,6 +521,12 @@ components: items: $ref: '#/components/schemas/SliceProfile' + Nssaa: + type: string + enum: + - NOT SUPPORTED + - SUPPORTED + #------------ Definition of concrete IOCs ---------------------------------------- SubNetwork-Single: allOf: -- GitLab From 532cbc40408229a48a6481c944875b6db07559de Mon Sep 17 00:00:00 2001 From: sunse Date: Thu, 11 Nov 2021 02:45:51 +0100 Subject: [PATCH 2/3] 28.541 Rel17 CR0627 NS specific authentication Update sliceNrm.yaml --- OpenAPI/sliceNrm.yaml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/OpenAPI/sliceNrm.yaml b/OpenAPI/sliceNrm.yaml index 48d584283..ad349f244 100644 --- a/OpenAPI/sliceNrm.yaml +++ b/OpenAPI/sliceNrm.yaml @@ -257,6 +257,13 @@ components: $ref: '#/components/schemas/ServAttrCom' performance: $ref: '#/components/schemas/EEPerfReq' + NSSAASupport: + type: object + properties: + servAttrCom: + $ref: '#/components/schemas/ServAttrCom' + support: + $ref: '#/components/schemas/Support' CNSliceSubnetProfile: type: object properties: @@ -298,8 +305,8 @@ components: $ref: '#/components/schemas/DeterministicComm' survivalTime: type: string - nSSAA: - $ref: '#/components/schemas/Nssaa' + nssaaSupport: + $ref: '#/components/schemas/NSSAASupport’ RANSliceSubnetProfile: type: object properties: @@ -478,8 +485,8 @@ components: $ref: '#/components/schemas/SliceSimultaneousUse' energyEfficiency: $ref: '#/components/schemas/EnergyEfficiency' - nSSAA: - $ref: '#/components/schemas/Nssaa' + nssaaSupport: + $ref: '#/components/schemas/NSSAASupport’ SliceProfile: type: object properties: @@ -521,12 +528,6 @@ components: items: $ref: '#/components/schemas/SliceProfile' - Nssaa: - type: string - enum: - - NOT SUPPORTED - - SUPPORTED - #------------ Definition of concrete IOCs ---------------------------------------- SubNetwork-Single: allOf: -- GitLab From 3171f2449abb899c06892d15f5e4c4637e01da5d Mon Sep 17 00:00:00 2001 From: sunse Date: Thu, 11 Nov 2021 02:58:01 +0100 Subject: [PATCH 3/3] fix ' at the end of $ref --- OpenAPI/sliceNrm.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenAPI/sliceNrm.yaml b/OpenAPI/sliceNrm.yaml index ad349f244..0948ef91d 100644 --- a/OpenAPI/sliceNrm.yaml +++ b/OpenAPI/sliceNrm.yaml @@ -306,7 +306,7 @@ components: survivalTime: type: string nssaaSupport: - $ref: '#/components/schemas/NSSAASupport’ + $ref: '#/components/schemas/NSSAASupport' RANSliceSubnetProfile: type: object properties: @@ -486,7 +486,7 @@ components: energyEfficiency: $ref: '#/components/schemas/EnergyEfficiency' nssaaSupport: - $ref: '#/components/schemas/NSSAASupport’ + $ref: '#/components/schemas/NSSAASupport' SliceProfile: type: object properties: -- GitLab