Amadeus Reservations · JSON Structure

Transfer Booking Travel Segment Structure

A segment of an itinerary used by a traveler between 2 locations at a given date and time using a particular transportation type FLIGHT or TRAIN

Type: object Properties: 4
BookingFlightsHotelsReservationsTravel

TravelSegment is a JSON Structure definition published by Amadeus Reservations, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

transportationType transportationNumber departure arrival

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-structure/transfer-booking-travel-segment-structure.json",
  "name": "TravelSegment",
  "description": "A segment of an itinerary used by a traveler between 2 locations at a given date and time using a particular transportation type FLIGHT or TRAIN",
  "type": "object",
  "properties": {
    "transportationType": {
      "$ref": "#/definitions/TransportationType"
    },
    "transportationNumber": {
      "type": "string",
      "example": "AF380",
      "description": "The flight number or train number, e.g. AF380"
    },
    "departure": {
      "$ref": "#/definitions/TravelSegmentLocation"
    },
    "arrival": {
      "$ref": "#/definitions/TravelSegmentLocation"
    }
  }
}