<xsd:simpleType name="check">
<xsd:annotation>
<xsd:documentation>The check type defines acceptable check values. A value of 'all' means that all matching objects must satisfy data requirements for a test to return true. 'at least one' means that at least one matching object must satisfies the data requirements. 'none exists' means that a test returns true if no matching object exist that satisfy the data requirements. 'only one' means that a test returns true if one, and only one, matching object satisfies the data requirements.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="all" />
<xsd:enumeration value="at least one" />
<xsd:enumeration value="none exist" />
<xsd:enumeration value="only one" />
</xsd:restriction>
</xsd:simpleType>
|