Type Alias DateRangeCategory

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

A catalogue item that lets the user specify a date range by picking an earliest and a latest date. The user can omit one of the dates to express earlier than or later than constraints.

Type declaration

  • fieldType: "date"
  • OptionalinfoButtonText?: string[]
  • key: string

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

  • Optionalmax?: string

    The latest date that the user can pick

    date

  • Optionalmin?: string

    The earliest date that the user can pick

    date

  • name: string

    The item's user-facing display name

  • system: string
  • type: "BETWEEN"