true or false matches: the text "true", the words "yes" or "no", and the numbers 1 or 0 all fail, because they are text or numbers rather than a real on/off value. This condition has no settings: it looks at whatever value it is given and reports whether that value is a true/false value.
Fields
This condition has no settings of its own.Sample data
This checks each entity’svalue field.
| Incoming value | Result |
|---|---|
true (an on/off value) | Matches |
false (an on/off value) | Matches |
"hello" (text) | Does not match |
42 (a number) | Does not match |
null (no value) | Does not match |
["a", "b", "c"] (a list) | Does not match |