DoubleRange

  • This data type represents a range of numerical values using a minimum and maximum boundary.

  • The range is defined by two fields: min, representing the lower bound, and max, representing the upper bound, both of which are numbers.

A range of doubles.

JSON representation
{
  "min": number,
  "max": number
}
Fields
min

number

The minimum data value, i.e. the lower bound of the range.

max

number

The maximum data value, i.e. the upper bound of the range.