A range expression that matches values between a minimum and maximum (inclusive).
Commonly used for date ranges and numeric ranges.
For date properties, use the format yyyy/MM/dd HH:mm:ss.
| Name | Type | Description | |
|---|---|---|---|
property
|
string
|
The entity property name to apply the range constraint to (e.g., createdDate, price).
|
|
minValue
|
string
|
The lower bound of the range (inclusive). For dates, use yyyy/MM/dd HH:mm:ss format.
|
|
maxValue
|
string
|
The upper bound of the range (inclusive). For dates, use yyyy/MM/dd HH:mm:ss format.
|
{
"betweenExpression" : {
"property" : "...",
"minValue" : "...",
"maxValue" : "..."
}
}
A range expression that matches values between a minimum and maximum (inclusive).
Commonly used for date ranges and numeric ranges.
For date properties, use the format yyyy/MM/dd HH:mm:ss.
| Name | Type | Description | |
|---|---|---|---|
maxValue
|
string
|
The upper bound of the range (inclusive). For dates, use yyyy/MM/dd HH:mm:ss format.
|
|
minValue
|
string
|
The lower bound of the range (inclusive). For dates, use yyyy/MM/dd HH:mm:ss format.
|
|
property
|
string
|
The entity property name to apply the range constraint to (e.g., createdDate, price).
|
<betweenExpression>
<property>...</property>
<minValue>...</minValue>
<maxValue>...</maxValue>
</betweenExpression>