<xsd:complexType name="dataAuditType">
<xsd:annotation>
<xsd:documentation>The dataAuditType 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>system_characteristics:dataStringType</extends>
<attributes>(includes system_characteristics:dataAttributes)</attributes>
<content>string</content>
<child_elements>none</child_elements>
</xsd:appinfo>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="system_characteristics:dataStringType">
<xsd:enumeration value="AUDIT_FAILURE" />
<xsd:enumeration value="AUDIT_NONE" />
<xsd:enumeration value="AUDIT_SUCCESS" />
<xsd:enumeration value="AUDIT_SUCCESS_FAILURE" />
<xsd:enumeration value="" />
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
|