Skip to content

Less than

Input
value
Validate that value is less than 100
validation:
lessThan

Ensure value is less than threshold

source:value
parameters
threshold

Value must be less than this

Output
result
Pass
Pass
Pass
Field "value" must be less than 100
Field "value" must be less than 100
Field "value" must be less than 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 less than threshold.

Parameters

  • threshold (number, required) — Value must be less than this. Examples: 100, 1000, 10000.

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-lessThan",
"type": "validation",
"action": "lessThan",
"params": {
"threshold": 100
},
"testInputs": [
"99",
"90",
"0",
"101",
"110",
"200"
]
}