<xs:complexType name="TravelerInformationType">
<xs:annotation>
<xs:documentation xml:lang="en">Specify passenger numbers and types</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PassengerTypeQuantity" type="PassengerTypeQuantityType" maxOccurs="10">
<xs:annotation>
<xs:documentation xml:lang="en">Specify number of passengers using Passenger Type Codes</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AirTraveler" type="AirTravelerType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Information profiling the person traveling
Gender - the gender of the customer, if needed
BirthDate - Date of Birth
Currency - the preferred currency in which monetary amounts should be returned.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
|