From 5a76630740e4129367d462c615f8be759c7a98b6 Mon Sep 17 00:00:00 2001 From: Thorsten Lohmar Date: Fri, 23 May 2025 08:47:18 +0200 Subject: [PATCH 1/2] Implementing tdoc S4-251113, plus correcting a missing colon at the endOf statement --- TS26517_MBSUserServiceAnnouncement.yaml | 35 ++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/TS26517_MBSUserServiceAnnouncement.yaml b/TS26517_MBSUserServiceAnnouncement.yaml index e340999d..2653dc0c 100644 --- a/TS26517_MBSUserServiceAnnouncement.yaml +++ b/TS26517_MBSUserServiceAnnouncement.yaml @@ -2,7 +2,7 @@ openapi: 3.0.0 info: title: 'MBS User Service Announcement' - version: 2.1.0 + version: 2.2.0 description: | MBS User Service Announcement Element units. © 2025, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). @@ -212,10 +212,16 @@ components: type: object properties: mbsServiceAreas: + deprecated: true type: array items: $ref: 'TS29571_CommonData.yaml#/components/schemas/MbsServiceArea' minItems: 1 + targetServiceAreas: + type: array + items: + $ref: '#/components/schemas/TargetServiceArea' + minItems: 1 mbsFSAId: $ref: 'TS29571_CommonData.yaml#/components/schemas/MbsFsaId' nrParameters: @@ -226,6 +232,33 @@ components: nrRedCapUEInfo: $ref: 'TS29571_CommonData.yaml#/components/schemas/NrRedCapUeInfo' + TargetServiceArea: + description: Target Service Area + type: object + oneOf: + - required: [ncgiList] + - required: [taiList] + properties: + ncgiList: + type: array + items: + $ref: 'TS29571_CommonData.yaml#/components/schemas/Ncgi' + minItems: 1 + description: List of NR Cell Identifiers + taiList: + type: array + items: + $ref: 'TS29571_CommonData.yaml#/components/schemas/Tai' + minItems: 1 + description: List of Tracking Area Identifiers + geographicAreaList: + type: array + items: + anyOf: + - $ref: 'TS29572_Nlmf_Location.yaml#/components/schemas/Polygon' + - $ref: 'TS29572_Nlmf_Location.yaml#/components/schemas/PointUncertaintyCircle' + minItems: 1 + NrParameterSet: type: object properties: -- GitLab From 45cbc2e9cd01e403121edf025168fc73f8b2e878 Mon Sep 17 00:00:00 2001 From: bradburyr Date: Mon, 29 Sep 2025 13:26:11 +0000 Subject: [PATCH 2/2] These suggestions were agreed in 26517-CR0030. --- TS26517_MBSUserServiceAnnouncement.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TS26517_MBSUserServiceAnnouncement.yaml b/TS26517_MBSUserServiceAnnouncement.yaml index 2653dc0c..0125a0c5 100644 --- a/TS26517_MBSUserServiceAnnouncement.yaml +++ b/TS26517_MBSUserServiceAnnouncement.yaml @@ -9,7 +9,7 @@ info: All rights reserved. externalDocs: - description: 3GPP TS 26.517 V18.3.0; 5G Multicast-Broadcast User Services; Protocols and Formats + description: 3GPP TS 26.517 V18.5.0; 5G Multicast-Broadcast User Services; Protocols and Formats url: http://www.3gpp.org/ftp/Specs/archive/26_series/26.517/ paths: /user-service-descriptions: @@ -238,6 +238,7 @@ components: oneOf: - required: [ncgiList] - required: [taiList] + - required: [geographicAreaList] properties: ncgiList: type: array -- GitLab