2.2.5.17 LogicalOperator

The LogicalOperator simple type specifies the logical operator that is used to join multiple business rule conditions.

The following is the XML schema definition of the LogicalOperator simple type.

   <xs:simpleType name="LogicalOperator">
     <xs:restriction base="xs:string">
       <xs:enumeration value="NotSpecified" />
       <xs:enumeration value="And" />
       <xs:enumeration value="Or" />
     </xs:restriction>
   </xs:simpleType>

The values of the enumeration are described in the following table.

Value

Meaning

NotSpecified

The operator is not specified.

And

The operator is the logical AND operator.

Or

The operator is the logical OR operator.