A clear name helps identify this rule in the process flow
Optional description to explain this rule's purpose
Define when conditions occur and what actions should be taken
Pseudocode Syntax Guide:
IF variable operator value THEN action
IF age > 18 AND status = "active" THEN set eligibility = "approved"
IF amount < 1000 THEN set discount = 0.1
Quick Start: Type your rules in natural language format
Example: IF age > 18 THEN SET canVote = true
Basic Condition:
IF age >= 18 THEN SET canVote = true
Multiple Conditions (AND):
IF income > 50000 AND creditScore >= 700 THEN SET loanApproved = true
Multiple Conditions (OR):
IF isPremium = true OR yearsActive > 5 THEN SET discount = 0.15
Multiple Actions:
IF orderAmount > 100 THEN SET freeShipping = true SET priority = "high" SET notification = "Thank you for your large order!" END
Pseudocode Errors:
Add your first rule to define when conditions occur and what actions should be taken.
No conditions defined. Add a condition to specify when this rule applies.
Variable | Operator | Value | Actions |
---|---|---|---|
|
Range values |
No actions defined. Add an action to specify what happens when conditions are met.
Action Type | Target | Configuration | Actions |
---|---|---|---|
|
{{ action.type === 'increment' ? 'Will increase by 1' : 'Will decrease by 1' }}
|