Skip to content

Array does not contain

Input
value
Validate that value does not contain 'missing'
validation:
arrayDoesNotContain

Ensure array field does not contain specified value

source:value
parameters
value

Value that the array must not contain

Output
result
Pass
Pass
Pass
Array field "value" contains unwanted value "missing"
Array field "value" contains unwanted value "missing"
Array field "value" contains unwanted value "missing"

Sample inputs run locally in your browser using the same operation logic as Fontana Flow.
Results are illustrative, not connected to a workflow.

Ensure array field does not contain specified value.

Parameters

  • value (string, optional) — Value that the array must not contain. Default: "".

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-arrayDoesNotContain",
"type": "validation",
"action": "arrayDoesNotContain",
"params": {
"value": "missing"
},
"testInputs": [
"[\"alpha\",\"beta\"]",
"[\"gamma\",\"delta\"]",
"[]",
"[\"missing\"]",
"[\"alpha\",\"missing\"]",
"[\"x\",\"missing\",\"y\"]"
]
}