The switch expression is a control flow expression that evaluates a list of boolean conditions in order. The first true condition executes its steps; if none match, it runs the optional default. Each case pairs a condition with a list of expressions; empty steps allow silent passes.
Add a switch step, define DSL conditions per case and add expressions inside each case.

data.operation == "sum")’Notify only if the user is not the requestor
Expectation: If there’s a match, stay silent; If not, send a message to the user
Tailor onboarding by access level.
Expectation: Routes to specific action and welcome message based on user’s access level.
Alert or log based on sensor data
Expectation: Based on the temperature send an alert or log.