Amadeus Reservations · JSON Structure

Flight Create Orders Air Travel Document Common Structure

AirTravelDocumentCommon schema

Type: object Properties: 3
BookingFlightsHotelsReservationsTravel

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

Properties

documentType documentNumber documentStatus

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-create-orders-air-travel-document-common-structure.json",
  "name": "AirTravelDocumentCommon",
  "description": "AirTravelDocumentCommon schema",
  "type": "object",
  "properties": {
    "documentType": {
      "type": "string",
      "description": "Type of the travel document",
      "enum": [
        "ETICKET",
        "PTICKET",
        "EMD",
        "MCO"
      ]
    },
    "documentNumber": {
      "type": "string",
      "description": "Identifier of the travel document prefixed by its owner code [NALC - 3 digits]. Can either be a primary or a conjunctive document number. Necessary for TicketingReference definition."
    },
    "documentStatus": {
      "type": "string",
      "description": "Status of the travel document contained in the fare element",
      "enum": [
        "ISSUED",
        "REFUNDED",
        "VOID",
        "ORIGINAL",
        "EXCHANGED"
      ]
    }
  }
}