<xsd:simpleType name="QuantifierEnum">
<xsd:annotation>
<xsd:documentation xml:lang="en">Logical quantification {All, Any}</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:token">
<xsd:enumeration value="All">
<xsd:annotation>
<xsd:documentation xml:lang="en">The condition in the scope of the quantifier is true of every member of the domain i.e. every one of the elements in scope.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Any">
<xsd:annotation>
<xsd:documentation xml:lang="en">The condition in the scope of the quantifier is true of at least one member of the domain i.e. one or more of the elements in scope.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
|