Amadeus Reservations · JSON Structure

Flight Order Management Traveler Structure

the traveler of the trip

Type: Properties: 0
BookingFlightsHotelsReservationsTravel

Traveler 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-traveler-structure.json",
  "name": "Traveler",
  "description": "the traveler of the trip",
  "allOf": [
    {
      "$ref": "#/definitions/Stakeholder"
    },
    {
      "type": "object",
      "properties": {
        "emergencyContact": {
          "description": "emergency contact",
          "$ref": "#/definitions/EmergencyContact"
        },
        "loyaltyPrograms": {
          "description": "list of loyalty program followed by the traveler",
          "type": "array",
          "minItems": 0,
          "maxItems": 10,
          "items": {
            "$ref": "#/definitions/LoyaltyProgram"
          }
        },
        "discountEligibility": {
          "description": "list of element that allow a discount.",
          "type": "array",
          "minItems": 0,
          "maxItems": 10,
          "items": {
            "$ref": "#/definitions/Discount"
          }
        },
        "contact": {
          "$ref": "#/definitions/Contact"
        }
      }
    }
  ]
}