@samply/lens
    Preparing search index...

    Type Alias NumericRangeCategory

    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 NumericRangeCategory = {
        fieldType: "number";
        infoButtonText?: string[];
        key: string;
        max?: number;
        min?: number;
        name: string;
        system: string;
        type: "BETWEEN";
    }
    Index

    Properties

    fieldType: "number"
    infoButtonText?: 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.

    max?: number

    The largest value that the user can enter

    min?: number

    The smallest value that the user can enter

    name: string

    The item's user-facing display name

    system: string
    type: "BETWEEN"