| operator |
| !=,neq,not,isnot,isnt,unequal,notequal | Passes if the subject is unequal to the operand. |
| ==,=,eq,is,equal,equals,equalto | Passes if the subject is equal to the operand. |
| <,lt,less,lessthan | Passes if the subject is less than the operand. |
| >,gt,greater,greaterthan | Passes if the subject is greater than the operand. |
| <=,lte,lessthanequals,lessthanorequalto | Passes if the subject is less than or equal to the operand. |
| >=,gte,greaterthanequals,greaterthanequalto | Passes if the subject is greater than or equal to the operand. |
| isempty,empty | Passes if the subject is empty. |
| !empty,notempty,isnotempty | Passes if the subject is not empty. |
| isnull,null | Passes if the subject is null. |
| inarray,in_array,ia | Passes if the subject is found in the operand list. (comma-delimited string) |