Interface SearchResponseFacetCountsFacetsStatsFacet

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

interface SearchResponseFacetCountsFacetsStatsFacet {
    name: string;
    type: "number_stats";
    value: {
        count: number;
        end: number;
        start: number;
    };
}

Properties

Properties

name: string
type: "number_stats"
value: {
    count: number;
    end: number;
    start: number;
}

Type declaration

  • count: number
  • end: number
  • start: number