When configuring Signals, you can use the “Does not exist” condition for your Quirks. There are best practices how to use this condition to achieve the desired result.
'')0)false)Use explicit string values to represent unknown or missing data when settings Quirks in the code
Now check for these specific values in your signal:
unknownunknown valuesIf you need to detect empty strings, use a RegEx match condition:
RegEx Pattern: ^$
This pattern matches empty strings specifically, but this will not match for a missing value.
For comprehensive coverage, combine both solutions:
unknown)^$ to catch empty strings