<xs:element name="ArrivalInformation" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies arrival information for a flight. </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="DateOfArrival" type="DateOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Date of arrival at this board point. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DayOfWeek" type="DayOfWeekType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies arrival day of the week.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ScheduledArrivalTime" type="xs:time" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies local or UTC scheduled arrival time. Accomodates the 12 and the 24 hour clock.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DateChangeIdentifier" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Signifies crossing a dateline and or midnight during the course of the flight.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="-1">
<xs:annotation>
<xs:documentation xml:lang="en">The arrival is a day earlier than the departure.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="+1">
<xs:annotation>
<xs:documentation xml:lang="en">The arrival is a day later than the departure.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="+2">
<xs:annotation>
<xs:documentation xml:lang="en">The arrival is a 2 days later than the departure.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="LocationName" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The full name of the arrival location. This can be the airport name (e.g., Chicago O'Hare), the railway station, or the city name. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="AirportLocationGroup" />
</xs:complexType>
</xs:element>
|