AllOf
A compound condition that is true only when all child conditions are true.
Notes
A compound condition that evaluates to true only when all of its child conditions are true. Used in importer flow control to require multiple conditions to be simultaneously satisfied.
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"
}
<allOf>
<conditions>
<condition/>
</conditions>
<label>string</label>
</allOf>
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.