DoubleRange

  • Represents a range of double-precision floating-point numbers, specified by a minimum and maximum value.

  • The range is inclusive of both the minimum (min) and maximum (max) values, which are represented as numbers in JSON format.

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.