openapi: 3.2.0 info: title: 3gpp-nidd Individual ManagePort Configuration API version: 1.3.0 description: "API for non IP data delivery. \n© 2024, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). \nAll rights reserved.\n" servers: - url: '{apiRoot}/3gpp-nidd/v1' variables: apiRoot: default: https://example.com description: apiRoot as defined in clause 5.2.4 of 3GPP TS 29.122. security: - {} - oAuth2ClientCredentials: [] tags: - name: Individual ManagePort Configuration paths: /{scsAsId}/configurations/{configurationId}/rds-ports/{portId}: parameters: - name: scsAsId description: String identifying the SCS/AS. in: path required: true schema: type: string - name: configurationId description: String identifying the individual NIDD configuration resource in the SCEF. in: path required: true schema: type: string - name: portId description: The UE port number. in: path required: true schema: type: string pattern: ^(ue([0-9]|(1[0-5]))-ef([0-9]|(1[0-5])))$ get: summary: Read an Individual ManagePort Configuration resource to query port numbers. operationId: FetchIndManagePortConfiguration tags: - Individual ManagePort Configuration responses: '200': description: The individual ManagePort configuration is successfully retrieved. content: application/json: schema: $ref: '#/components/schemas/ManagePort' '307': $ref: TS29122_CommonData.yaml#/components/responses/307 '308': $ref: TS29122_CommonData.yaml#/components/responses/308 '400': $ref: TS29122_CommonData.yaml#/components/responses/400 '401': $ref: TS29122_CommonData.yaml#/components/responses/401 '403': $ref: TS29122_CommonData.yaml#/components/responses/403 '404': $ref: TS29122_CommonData.yaml#/components/responses/404 '406': $ref: TS29122_CommonData.yaml#/components/responses/406 '429': $ref: TS29122_CommonData.yaml#/components/responses/429 '500': $ref: TS29122_CommonData.yaml#/components/responses/500 '503': $ref: TS29122_CommonData.yaml#/components/responses/503 default: $ref: TS29122_CommonData.yaml#/components/responses/default put: summary: Create a new Individual ManagePort Configuration resource to reserve port numbers. operationId: UpdateIndManagePortConfiguration tags: - Individual ManagePort Configuration requestBody: description: Contains information to be applied to the individual ManagePort configuration. required: true content: application/json: schema: $ref: '#/components/schemas/ManagePort' responses: '201': description: The individual ManagePort configuration is created. content: application/json: schema: $ref: '#/components/schemas/ManagePort' headers: Location: description: Contains the URI of the newly created resource required: true schema: type: string '202': description: The request is accepted and under processing. '400': $ref: TS29122_CommonData.yaml#/components/responses/400 '401': $ref: TS29122_CommonData.yaml#/components/responses/401 '403': $ref: TS29122_CommonData.yaml#/components/responses/403 '404': $ref: TS29122_CommonData.yaml#/components/responses/404 '409': $ref: TS29122_CommonData.yaml#/components/responses/409 '411': $ref: TS29122_CommonData.yaml#/components/responses/411 '413': $ref: TS29122_CommonData.yaml#/components/responses/413 '415': $ref: TS29122_CommonData.yaml#/components/responses/415 '429': $ref: TS29122_CommonData.yaml#/components/responses/429 '500': description: The request was not successful. content: application/problem+json: schema: $ref: '#/components/schemas/RdsDownlinkDataDeliveryFailure' '503': $ref: TS29122_CommonData.yaml#/components/responses/503 default: $ref: TS29122_CommonData.yaml#/components/responses/default delete: summary: Delete an Individual ManagePort Configuration resource to release port numbers. operationId: DeleteIndManagePortConfiguration tags: - Individual ManagePort Configuration responses: '202': description: The request is accepted and under processing. '204': description: The individual ManagePort configuration is deleted. '307': $ref: TS29122_CommonData.yaml#/components/responses/307 '308': $ref: TS29122_CommonData.yaml#/components/responses/308 '400': $ref: TS29122_CommonData.yaml#/components/responses/400 '401': $ref: TS29122_CommonData.yaml#/components/responses/401 '403': $ref: TS29122_CommonData.yaml#/components/responses/403 '404': $ref: TS29122_CommonData.yaml#/components/responses/404 '409': $ref: TS29122_CommonData.yaml#/components/responses/409 '429': $ref: TS29122_CommonData.yaml#/components/responses/429 '500': description: The request was not successful. content: application/problem+json: schema: $ref: '#/components/schemas/RdsDownlinkDataDeliveryFailure' '503': $ref: TS29122_CommonData.yaml#/components/responses/503 default: $ref: TS29122_CommonData.yaml#/components/responses/default components: schemas: ManageEntity: anyOf: - type: string enum: - UE - AS - type: string description: 'This string provides forward-compatibility with future extensions to the enumeration but is not used to encode content defined in the present version of this API. ' description: "Represents the origin that manages the RDS port. \nPossible values are:\n- UE: Representing the UE.\n- AS: Representing the Application Server.\n" readOnly: true RdsDownlinkDataDeliveryFailure: description: Represents the failure delivery result for RDS. allOf: - $ref: TS29122_CommonData.yaml#/components/schemas/ProblemDetails - type: object properties: requestedRetransmissionTime: $ref: TS29122_CommonData.yaml#/components/schemas/DateTime supportedUeFormats: type: array items: $ref: '#/components/schemas/SerializationFormat' minItems: 1 description: 'Indicates the serialization format(s) that are supported by the UE on the associated RDS port. ' ManagePort: description: Represents the configuration of a RDS dynamic port management. type: object properties: self: $ref: TS29122_CommonData.yaml#/components/schemas/Link appId: type: string description: Identifies the application. manageEntity: $ref: '#/components/schemas/ManageEntity' skipUeInquiry: type: boolean description: Indicate whether to skip UE inquiry. supportedFormats: type: array items: $ref: '#/components/schemas/SerializationFormat' minItems: 1 description: 'Indicates the serialization format(s) that are supported by the SCS/AS on the associated RDS port. ' configuredFormat: $ref: '#/components/schemas/SerializationFormat' required: - appId SerializationFormat: anyOf: - type: string enum: - CBOR - JSON - XML - type: string description: 'This string provides forward-compatibility with future extensions to the enumeration but is not used to encode content defined in the present version of this API. ' description: "Represents a serialization format associated with an RDS port which is applicable\nfor the Rds_serialization_format feature.\nPossible values are\n- CBOR: The CBOR Serialzition format \n- JSON: The JSON Serialzition format\n- XML: The XML Serialzition format\n" securitySchemes: oAuth2ClientCredentials: type: oauth2 flows: clientCredentials: tokenUrl: '{tokenUrl}' scopes: {} externalDocs: description: 3GPP TS 29.122 V18.6.0 T8 reference point for Northbound APIs url: https://www.3gpp.org/ftp/Specs/archive/29_series/29.122/