DoubleRange

  • Defines a range of numerical values using a minimum and maximum boundary.

  • Uses JSON format with "min" and "max" fields representing lower and upper bounds respectively.

  • Both "min" and "max" fields are of data type 'number'.

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.