Skip to main content

FilterRange

An inclusive range constraint for a search filter. Valid only for filters declared with type date or number in /capabilities. At least one bound is required; values are ISO 8601 strings for date filters and numbers for number filters. A filter value may be a single range or a non-empty array of ranges; an array is matched as an OR of its ranges — an entity matches when any of the ranges matches.

gte object

The inclusive lower bound.

oneOf
string
lte object

The inclusive upper bound.

oneOf
string
FilterRange
{
"gte": "2020-01-01",
"lte": "2021-01-01"
}