Skip to content

Numeric filters

Filters by comparing a field to a numeric value.

PropertyTypeDescription
operatorComparisonOperatorsThe operator to apply to the filter value
valuenumericThe value to use for the filter operation

A JSON example of this field is:

{
"operator": "eq",
"value": 1000
}

Filters by comparing a field to a range of numeric values.

PropertyTypeDescription
operatorRangeOperatorsThe operator to apply to the filter value
valuerange objectThe value to use for the filter operation
PropertyTypeDescription
minnumericThe minimum numeric value for this range
maxnumericThe maximum numeric value for this range

A JSON example of this field is:

{
"operator": "within",
"value": {
"min": 1000,
"max": 10000
}
}

Filters by comparing a field to an array of numeric values.

PropertyTypeDescription
operatorArrayOperatorsThe operator to apply to the filter value
valueArray<numeric>The value to use for the filter operation

A JSON example of this field is:

{
"operator": "in",
"value": [1000, 2000, 3000]
}