Characteristics
- Scope: Node-level; visible to successor nodes
- Where to define: In the node’s configuration
- Value types: string, number, boolean, array, object
- Templates: Values can use
{{variable_name}}to reference other variables - Sync: Stored in the variable store so availability is tracked correctly
Supported Data Types
| Data Type | Example Value | Use Case |
|---|---|---|
string | "Hello {{customer_name}}" | Text with variable substitution |
number | 42 or {{max_attempts}} | Numbers or references |
boolean | true or false | Flags and toggles |
array | ["option1", "option2", "option3"] | Lists of values |
object | {"key": "value", "count": 5} | Structured data |