<xs:complexType name="DateTimeComplexType">
<xs:annotation>
<xs:documentation>Astronomical dateTime, including the system ("UT", "HJD",...) and accuracy. Default is UT.</xs:documentation>
</xs:annotation>
<xs:attribute name="value" type="xs:dateTime"/>
<xs:attribute name="system">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="UT"/>
<xs:enumeration value="heliocentric"/>
<xs:enumeration value="barycentric"/>
<xs:enumeration value="civil"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="error" type="xs:duration"/>
</xs:complexType> |