18.8Scenario 7 — Conditional business value
Prompt:
“Map customers with revenue over $1M to Enterprise.”
%dw 2.0
output application/java
---
{
Name: payload.name,
Customer_Type__c:
if ((payload.revenue default 0) > 1000000)
"Enterprise"
else
"Standard"
}