Amadeus Reservations · JSON Structure

Flight Order Management Air Travel Document Structure

ticket information

Type: Properties: 0
BookingFlightsHotelsReservationsTravel

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

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/flight-order-management-air-travel-document-structure.json",
  "name": "AirTravelDocument",
  "description": "ticket information",
  "allOf": [
    {
      "$ref": "#/definitions/AirTravelDocumentCommon"
    },
    {
      "type": "object",
      "properties": {
        "travelerId": {
          "type": "string",
          "description": "id of the impacted traveler",
          "example": "1"
        },
        "segmentIds": {
          "description": "Ids of the impacted segments",
          "type": "array",
          "items": {
            "type": "string"
          },
          "example": "1"
        }
      }
    }
  ]
}