<xsd:complexType name="testType">
<xsd:annotation>
<xsd:documentation>The base type of every test includes an optional notes element and two attributes. The required id attribute uniquely identifies each test, and is of the form 'xxx-#'. There is a three letter character code to help distinguish the type of test, followed by an unspecified number of digits (e.g. 'wrt-123'). The required comment attribute provides a short description of the test.</xsd:documentation>
<xsd:appinfo>
<attributes>id, comment</attributes>
<content>none</content>
<child_elements>[notes]</child_elements>
</xsd:appinfo>
</xsd:annotation>
<xsd:sequence>
<xsd:element ref="oval:notes" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:attribute name="id" type="oval:testid" use="required" />
<xsd:attribute name="comment" type="xsd:string" use="required" />
</xsd:complexType>
|