View Source GoogleApi.DiscoveryEngine.V1beta.Model.GoogleCloudDiscoveryengineV1betaSearchRequestFacetSpecFacetKey (google_api_discovery_engine v0.15.0)

Specifies how a facet is computed.

Attributes

  • caseInsensitive (type: boolean(), default: nil) - True to make facet keys case insensitive when getting faceting values with prefixes or contains; false otherwise.
  • contains (type: list(String.t), default: nil) - Only get facet values that contain the given strings. For example, suppose "category" has three values "Action > 2022", "Action > 2021" and "Sci-Fi > 2022". If set "contains" to "2022", the "category" facet only contains "Action > 2022" and "Sci-Fi > 2022". Only supported on textual fields. Maximum is 10.
  • intervals (type: list(GoogleApi.DiscoveryEngine.V1beta.Model.GoogleCloudDiscoveryengineV1betaInterval.t), default: nil) - Set only if values should be bucketed into intervals. Must be set for facets with numerical values. Must not be set for facet with text values. Maximum number of intervals is 30.
  • key (type: String.t, default: nil) - Required. Supported textual and numerical facet keys in Document object, over which the facet values are computed. Facet key is case-sensitive.
  • orderBy (type: String.t, default: nil) - The order in which documents are returned. Allowed values are: "count desc", which means order by SearchResponse.Facet.values.count descending. "value desc", which means order by SearchResponse.Facet.values.value descending. Only applies to textual facets. If not set, textual values are sorted in natural order; numerical intervals are sorted in the order given by FacetSpec.FacetKey.intervals.
  • prefixes (type: list(String.t), default: nil) - Only get facet values that start with the given string prefix. For example, suppose "category" has three values "Action > 2022", "Action > 2021" and "Sci-Fi > 2022". If set "prefixes" to "Action", the "category" facet only contains "Action > 2022" and "Action > 2021". Only supported on textual fields. Maximum is 10.
  • restrictedValues (type: list(String.t), default: nil) - Only get facet for the given restricted values. Only supported on textual fields. For example, suppose "category" has three values "Action > 2022", "Action > 2021" and "Sci-Fi > 2022". If set "restricted_values" to "Action > 2022", the "category" facet only contains "Action > 2022". Only supported on textual fields. Maximum is 10.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() ::
  %GoogleApi.DiscoveryEngine.V1beta.Model.GoogleCloudDiscoveryengineV1betaSearchRequestFacetSpecFacetKey{
    caseInsensitive: boolean() | nil,
    contains: [String.t()] | nil,
    intervals:
      [
        GoogleApi.DiscoveryEngine.V1beta.Model.GoogleCloudDiscoveryengineV1betaInterval.t()
      ]
      | nil,
    key: String.t() | nil,
    orderBy: String.t() | nil,
    prefixes: [String.t()] | nil,
    restrictedValues: [String.t()] | nil
  }

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.