<xsd:complexType name="subtestAuditType">
<xsd:annotation>
<xsd:documentation>The subtestAuditType restricts a string value to a specific set of values: AUDIT_NONE, AUDIT_SUCCESS, AUDIT_FAILURE, and AUDIT_SUCCESS_FAILURE. These values describe which audit records should be generated.</xsd:documentation>
<xsd:appinfo>
<extends>oval:subtestStringType</extends>
<attributes>(includes oval:subtestAttributes)</attributes>
<content>string</content>
<child_elements>none</child_elements>
</xsd:appinfo>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="oval:subtestStringType">
<xsd:enumeration value="AUDIT_FAILURE" />
<xsd:enumeration value="AUDIT_NONE" />
<xsd:enumeration value="AUDIT_SUCCESS" />
<xsd:enumeration value="AUDIT_SUCCESS_FAILURE" />
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
|