<xs:complexType name="TravelDateTimeType">
<xs:annotation>
<xs:documentation xml:lang="en">Date and time of trip that allows specifying a time window before and after the given date.</xs:documentation>
</xs:annotation>
<xs:choice>
<xs:element name="DepartureDateTime" type="TimeInstantType">
<xs:annotation>
<xs:documentation xml:lang="en">The departure date and optionally a time period that can be applied before and/or after the departure date.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ArrivalDateTime" type="TimeInstantType">
<xs:annotation>
<xs:documentation xml:lang="en">The arrival date and optionally a time period that can be applied before and/or after the arrival date.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:complexType>
|