openapi: 3.0.0 info: version: '1.3.0' title: 'SEPP Telescopic FQDN Mapping API' description: | SEPP Telescopic FQDN Mapping Service. © 2025, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved. servers: - url: '{apiRoot}/nsepp-telescopic/v1' variables: apiRoot: default: https://example.com description: apiRoot as defined in clause 4.4 of 3GPP TS 29.501. externalDocs: description: 3GPP TS 29.573 V19.5.0; 5G System; Public Land Mobile Network (PLMN) Interconnection; Stage 3 url: https://www.3gpp.org/ftp/Specs/archive/29_series/29.573/ paths: /mapping: get: summary: Maps an FQDN to/from a telescopic FQDN operationId: GetTelescopicMapping tags: - Telescopic Mapping (Document) parameters: - name: foreign-fqdn in: query description: FQDN of the NF in the foreign PLMN schema: $ref: 'TS29571_CommonData.yaml#/components/schemas/Fqdn' - name: telescopic-label in: query description: Telescopic Label schema: type: string responses: '200': description: Expected response to a valid request content: application/json: schema: $ref: '#/components/schemas/TelescopicMapping' '400': $ref: 'TS29571_CommonData.yaml#/components/responses/400' '401': $ref: 'TS29571_CommonData.yaml#/components/responses/401' '403': $ref: 'TS29571_CommonData.yaml#/components/responses/403' '404': $ref: 'TS29571_CommonData.yaml#/components/responses/404' '429': $ref: 'TS29571_CommonData.yaml#/components/responses/429' '500': $ref: 'TS29571_CommonData.yaml#/components/responses/500' '502': $ref: 'TS29571_CommonData.yaml#/components/responses/502' '503': $ref: 'TS29571_CommonData.yaml#/components/responses/503' default: $ref: 'TS29571_CommonData.yaml#/components/responses/default' components: schemas: # # STRUCTURED TYPES # TelescopicMapping: description: Contains the Telescopic mapping data type: object properties: telescopicLabel: type: string seppDomain: $ref: 'TS29571_CommonData.yaml#/components/schemas/Fqdn' foreignFqdn: $ref: 'TS29571_CommonData.yaml#/components/schemas/Fqdn' # # SIMPLE TYPES # # # ENUMS #