Interface SearchResponseFacetCountsFacetsCommonFacet

Facet V3: Represents the common facet in the search response.

interface SearchResponseFacetCountsFacetsCommonFacet {
    name: string;
    type: "number" | "text";
    value: {
        count: number;
        name: string;
    }[];
}

Properties

Properties

name: string
type: "number" | "text"
value: {
    count: number;
    name: string;
}[]

Type declaration

  • count: number
  • name: string