Traveller

Traveler

Describes personal information about the traveller. It consists of the following elements:

  • ID - ID of this traveller within the given object (booking/order). Data type - positive integer.
  • Type - passenger type. Data type - enumeration, possible values:
    • ADT - adult - passenger over 12 years of age
    • UNN - child - passenger older than 2 and under 12 years of age - unaccompanied by an adult
    • CNN - child - passenger over 2 and under 12 years old
    • INF - infant - passenger under 2 years old - not occupying a seat in the airplane
    • INS - infant - passenger under 2 years old - occupying a seat in the aircraft
    • MIL - military
    • SEA - seaman
    • SRC - elderly passenger
    • STU - student
    • YTH - young people
    • JCB - bulk type of ADT
    • JNN - bulk type of CNN (INS included)
    • JNF - bulk type of INF only
    • DAT - passenger who is accompanying a DIS type
    • DIS - invalid
  • NamePrefix - prefix/title of this passenger (optional). Data type - string.
  • Name - passenger's name. Data type - string.
  • LastName - passenger's last name. Data type - string.
  • MiddleName - passenger's middle name (optional). Data type - string.
  • DateOfBirth - passenger's date of birth. Data type - date in the dd.mm.yyyy
  • Nationality - passenger's nationality. Data type - string, ISO Alpha2 country code
  • Gender - passenger's sex. Data type - enumeration, possible values:
    • N - not selected
    • M - male
    • F - female
  • LinkedTo - link of a passenger to another passenger, makes sense and is mandatory only for infants without a seat (optional). Data type - int32.
  • IsDisabled - attribute of a disabled passenger (optional). Data type - bool.
  • ExternalID - custom passenger ID in the external system (optional). Data type - string, without using Cyrillic, special characters are not recommended.

Sample

                  <a:Traveller>
                     <a:ID>1</a:ID>
                     <a:IDInPNR>12</a:IDInPNR>
                     <a:Type>ADT</a:Type>
                     <a:NamePrefix>MR</a:NamePrefix>
                     <a:Name>SEBASTIAN</a:Name>
                     <a:LastName>VETTEL</a:LastName>
                     <a:DateOfBirth>11.02.1994</a:DateOfBirth>
                     <a:Nationality>DE</a:Nationality>
                     <a:Gender>M</a:Gender>
                  </a:Traveller>