Type Alias AutocompleteCategory

AutocompleteCategory: {
    criteria: Criteria[];
    fieldType: "autocomplete";
    infoButtonText?: string[];
    key: string;
    name: string;
    system: string;
    type: "EQUALS";
}

A catalogue item that lets the user select one or more criteria from a predefined list. The list of criteria is not rendered. Instead the user can find and select items by typing into an autocomplete text box. The resulting query matches any of the selected criteria.

Type declaration

  • criteria: Criteria[]

    The list of criteria the user can select from

  • fieldType: "autocomplete"
  • 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.

  • name: string

    The item's user-facing display name

  • system: string
  • type: "EQUALS"