Amadeus Solutions · JSON Structure

Flight Offers Search Traveler Info Structure

TravelerInfo schema

Type: object Properties: 3 Required: 2
AirlinesBookingFlightsGDSHotelsTravelTravel Technology

TravelerInfo is a JSON Structure definition published by Amadeus Solutions, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id travelerType associatedAdultId

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-solutions/refs/heads/main/json-structure/flight-offers-search-traveler-info-structure.json",
  "name": "TravelerInfo",
  "description": "TravelerInfo schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": 1
    },
    "travelerType": {
      "$ref": "#/definitions/TravelerType"
    },
    "associatedAdultId": {
      "type": "string",
      "description": "if type=\"HELD_INFANT\", corresponds to the adult travelers's id who will share the seat"
    }
  },
  "required": [
    "id",
    "travelerType"
  ]
}