<xs:complexType name="Status">
<xs:annotation>
<xs:documentation>Status element giving the stability state of files and some extra comments.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="comment" type="xs:string" maxOccurs="unbounded" minOccurs="0">
<xs:annotation>
<xs:documentation>A comment on the current status. Not necessarily signalling a problem.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="issue" type="xs:string" maxOccurs="unbounded" minOccurs="0">
<xs:annotation>
<xs:documentation>An issue which need addressing</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="contributor" type="Person" maxOccurs="unbounded" minOccurs="0">
<xs:annotation>
<xs:documentation>Who added the comments?</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="value" type="StatusValue">
<xs:annotation>
<xs:documentation>Currently an enum value of status/in progress/etc.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType> |