DateTimeComplexType

Astronomical dateTime, including the system ("UT", "HJD",...) and accuracy. Default is UT.

Complex Type Information

Model

Attributes

QName Type Fixed Default Use Inheritable Annotation
error xs:duration optional
system restriction of xs:string optional
value xs:dateTime optional

Used By

Source

<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>