StatusValue

Status enum for stability state of files. This is subject to change.

Simple Type Information

Used By

Attribute Status/@value

Source

<xs:simpleType name="StatusValue">
  <xs:annotation>
    <xs:documentation>Status enum for stability state of files. This is subject to change.</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:string">
    <xs:enumeration value="stable">
      <xs:annotation>
        <xs:documentation>File can be used with reasonable confidence</xs:documentation>
      </xs:annotation>
    </xs:enumeration>
    <xs:enumeration value="in_progress">
      <xs:annotation>
        <xs:documentation>File can be used with caution, bearing in mind any comments present</xs:documentation>
      </xs:annotation>
    </xs:enumeration>
    <xs:enumeration value="known_issues">
      <xs:annotation>
        <xs:documentation>File can be assumed to be erroneous and shouldn't be used</xs:documentation>
      </xs:annotation>
    </xs:enumeration>
    <xs:enumeration value="deprecated">
      <xs:annotation>
        <xs:documentation>File uses constructs which have been superceded in current version of specification</xs:documentation>
      </xs:annotation>
    </xs:enumeration>
  </xs:restriction>
</xs:simpleType>