<xsd:simpleType name="operators">
<xsd:annotation>
<xsd:documentation>Define acceptable operators.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="equals" />
<xsd:enumeration value="not equal" />
<xsd:enumeration value="greater than" />
<xsd:enumeration value="less than" />
<xsd:enumeration value="greater than or equal" />
<xsd:enumeration value="less than or equal" />
<xsd:enumeration value="bitwise and" />
<xsd:enumeration value="bitwise or" />
<xsd:enumeration value="pattern match">
<xsd:annotation>
<xsd:documentation>The pattern match operator allows an item to be tested against a regular expression. Patterns must comply with POSIX std 1003.2-1992, Section 2.8 - 'Regular Expression Notation'. Patterns can use both Basic and Extended Regular Expression notation.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
|