AnyOf
A compound condition that is true when any one child condition is true.
Notes
A compound condition that evaluates to true when at least one of its child conditions is true. Used in importer flow control to match documents satisfying any one of multiple criteria.
Examples
- YAML
- JSON
- XML
anyOf: []
{
"anyOf": []
}
<anyOf/>
Usage
Full configuration skeleton, with every option and its default
- YAML
- JSON
- XML
conditions: []
label: string
{
"conditions": [],
"label": "string"
}
<anyOf>
<conditions>
<condition/>
</conditions>
<label>string</label>
</anyOf>
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.