Skip to content

Greater than or equal

Input
value
Validate that value is at least 100
validation:
greaterThanOrEqual

Ensure value is greater than or equal to threshold

source:value
parameters
threshold

Value must be greater than or equal to this

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

Parameters

  • threshold (number, required) — Value must be greater than or equal to 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-greaterThanOrEqual",
"type": "validation",
"action": "greaterThanOrEqual",
"params": {
"threshold": 100
},
"testInputs": [
"100",
"110",
"200",
"99",
"90",
"0"
]
}