Commit 5a766307 authored by lohmart's avatar lohmart
Browse files

Implementing tdoc S4-251113, plus correcting a missing colon at the endOf statement

parent 5df2309e
Loading
Loading
Loading
Loading
+34 −1
Original line number Diff line number Diff line
@@ -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: