Skip to content

Greater than

Input
value
Validate that value is greater than 100
validation:
greaterThan

Ensure value is greater than threshold

source:value
parameters
threshold

Value must be greater than this

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

Parameters

  • threshold (number, required) — Value must be greater than this. Examples: 0, 10, 100.

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