For Each is a meta-condition that iterates elements in an object array and applies an inspector to each value.

Interpretation Methods

The inspector supports these interpretation methods:

  • object (array)

Options

FieldTypeDescriptionRequired
inspectorobjectthe inspector configuration applied to each element in the array.Yes
typestringdetermines the method of combining results from the inspector.

must be one of:
- none: none of the elements from the array match the inspector
- any: at least one of the elements from the array match the inspector
- all: all of the elements form the array match in the inspector
Yes