<xsd:simpleType name="check">
<xsd:annotation>
<xsd:documentation>Define acceptable check types. 'all' means to check that all matching object satisfy data requirements. 'at least one' means that at least one matching object satisfies the data requirements. 'none exists' means that no matching object exists that satisfy the data requirements. 'only one' means that 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>
|