Between
Input
| value |
|---|
Validate that value is between 10 and 100
validation:between
Ensure value is between min and max
source:value
parameters
- min
- max
Minimum value (inclusive)
Maximum value (inclusive)
Output
| result |
|---|
| Pass |
| Pass |
| Pass |
| Field "value" must be between 10 and 100 |
| Field "value" must be between 10 and 100 |
| Field "value" must be between 10 and 100 |
Sample inputs run locally in your browser using the same operation logic as Fontana Flow.
Results are illustrative, not connected to a workflow.
Ensure value is between min and max.
Parameters
- min (Minimum Value, number, required) — Minimum value (inclusive). Examples:
0,1,10. - max (Maximum Value, number, required) — Maximum value (inclusive). Examples:
100,1000.
Field selection
- source — Field whose values this operation reads. Omit to apply to all fields on the row.
- target — Optional output field. When omitted, the source field is updated in place.
JSON Configuration
{ "id": "op-between", "type": "validation", "action": "between", "params": { "min": 10, "max": 100 }, "testInputs": [ "55", "10", "100", "0", "110", "200" ]}