ConditionModel
An action condition: a single clause, or a compound of clauses combined with all / any.
- allType: array object[] | null · Allnullable
Compound AND — the action fires only when every clause is met.
- expressionType: string · Expressionrequired
Boolean expression over the event's fields, e.g.
result.value > 80 AND confidence > 0.75. - operatorType: string · Operatorrequired
Name of the operator whose result this clause tests.
- anyType: array object[] | null · Anynullable
Compound OR — the action fires when any clause is met.
- expressionType: string · Expressionrequired
Boolean expression over the event's fields, e.g.
result.value > 80 AND confidence > 0.75. - operatorType: string · Operatorrequired
Name of the operator whose result this clause tests.
- expressionType: string · Expressionnullable
Single-clause form: the expression to evaluate.
- operatorType: string · Operatornullable
Single-clause form: the operator to test.