Logical Transforms
Choose between two outcomes based on a condition.
if
Evaluates when (the same clause shape a decision rule uses); if it
matches, returns then, otherwise else. Both branches may be plain values or
nested transforms.
| Field | Description |
|---|---|
| when | Object of attribute: expectedValue; all must match (exact, case-sensitive). |
| then | Returned when the condition matches. A value or a nested transform. |
| else | Returned when it does not. |
5