NoneOf
A compound condition that is true only when none of its child conditions are true.
Notes
A compound condition that evaluates to true only when none of its child conditions are true. Used in importer flow control to route documents that do not satisfy any of the specified criteria.
Examples
- YAML
- JSON
- XML
noneOf: []
{
"noneOf": []
}
<noneOf/>
Usage
Full configuration skeleton, with every option and its default
- YAML
- JSON
- XML
conditions: []
label: string
{
"conditions": [],
"label": "string"
}
<noneOf>
<conditions>
<condition/>
</conditions>
<label>string</label>
</noneOf>
Properties
| Property | Type | Required | Default |
|---|---|---|---|
conditions | Condition[] | No | - |
label | string | No | - |
Property Details
conditions
A list of conditions that are evaluated to determine whether the handler should be applied.
label
An optional, user-supplied label for this step in the importer pipeline. It has no effect on processing — it exists purely to help identify this step, for example in large configurations or in the visual configurator.