ExpressionBetween Data Type

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.

Available Since
1.3.0
Properties
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.
ExpressionBetween (JSON)
{
  "betweenExpression" : {
    "property" : "...",
    "minValue" : "...",
    "maxValue" : "..."
  }
}
ExpressionBetween Data Type

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.

Available Since
1.3.0
Properties
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).
ExpressionBetween (XML)
<betweenExpression>
  <property>...</property>
  <minValue>...</minValue>
  <maxValue>...</maxValue>
</betweenExpression>