Interface Range

Quantity that is defined as range, e.g., melting point

interface Range {
    max: number;
    min: number;
    precision?: number;
    units?: string;
}

Properties

max: number

The upper value of some characteristic or property.

min: number

The lower value of some characteristic or property.

precision?: number
units?: string

A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for unitCode.