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.
- string
- number
string
lte object
The inclusive upper bound.
- string
- number
string
FilterRange
{
"gte": "2020-01-01",
"lte": "2021-01-01"
}