Skip to main content

ThresholdStrategy

typeType (string)required
Constant value: threshold
params objectrequired

threshold strategy parameters.

direction: 'above' | 'below' value: the fixed cutoff (any float — no global bounds)

Note: parameter key is 'value', NOT 'cutoff'. Fires when: direction='above' → concept_value > value direction='below' → concept_value < value

directionThresholdDirection (string)required

Possible values: [above, below]

valueValue (number)required
ThresholdStrategy
{
"type": "threshold",
"params": {
"direction": "above",
"value": 0
}
}