<xs:complexType name="TimeInstantType">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies a time window.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="DateOrDateTimeType">
<xs:attribute name="WindowBefore" type="xs:duration" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A period of time that can be applied to another time resulting in an earlier range of time.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="WindowAfter" type="xs:duration" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A period of time that can be applied to another time resulting in a later range of time.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CrossDateAllowedIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true the requested period may extend over the previous or following day. When false, the search period is restricted to the date specified. Normally used when the window duration is in hours.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
|