Type Alias NumericRangeCategory

NumericRangeCategory: {
    fieldType: "number";
    infoButtonText?: string[];
    key: string;
    max?: number;
    min?: number;
    name: string;
    system: string;
    type: "BETWEEN";
}

A catalogue item that lets the user specify a numeric range by entering a minimum and a maximum value. The user can omit one of the values to express less than or greater than constraints.

Type declaration

  • fieldType: "number"
  • OptionalinfoButtonText?: string[]

    Optional text that is accessed by clicking a "ⓘ" button next to the display name

  • key: string

    A key that uniquely identifies the catalogue item. It is typically used to look up the CQL snippet for that item.

  • Optionalmax?: number

    The largest value that the user can enter

  • Optionalmin?: number

    The smallest value that the user can enter

  • name: string

    The item's user-facing display name

  • system: string
  • type: "BETWEEN"