Type Alias SingleSelectCategory

SingleSelectCategory: {
    criteria: Criteria[];
    fieldType: "single-select";
    infoButtonText?: string[];
    key: string;
    name: string;
    subCategoryName?: 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 rendered in the catalogue tree and the user can select criteria by clicking a "->" button. The resulting query matches any of the selected criteria.

Type declaration

  • criteria: Criteria[]

    The list of criteria the user can select from

  • fieldType: "single-select"
  • 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

  • OptionalsubCategoryName?: string
  • system: string
  • type: "EQUALS"