Is it possible to nest an IF block inside an ASSIGN action for conditional mapping? I’m trying to default a variable to ‘unknown’ if the inbound JSON field is null. My current snippet throws a validation error when the source key doesn’t exist. The expression IF(IS_NULL(data.field), 'unknown', data.field) isn’t resolving correctly in the designer. Any ideas on the correct syntax or a workaround?