DoubleRange

  • Describes a range of doubles.

  • Represented by a JSON object with "min" and "max" fields.

  • The "min" field indicates the minimum data value.

  • The "max" field indicates the maximum data value.

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.