{ "name": "IS NOT", "type": "operator", "groups": ["Operators"], "description": "Returns TRUE if a is not the same as b.", "arguments": [{ "arg": "a", "description": "value" }, { "arg": "b", "description": "value" }], "examples": [{ "expression": "'a' IS NOT 'b'", "returns": "TRUE" }, { "expression": "'a' IS NOT 'a'", "returns": "FALSE" }, { "expression": "4 IS NOT 2+2", "returns": "FALSE" }], "tags": ["compare", "same", "different"] }