View Source GoogleApi.DiscoveryEngine.V1beta.Model.GoogleCloudDiscoveryengineV1alphaFieldConfig (google_api_discovery_engine v0.7.0)
Configurations for fields of a schema. For example, configuring a field is indexable, or searchable.
Attributes
-
completableOption
(type:String.t
, default:nil
) - If completable_option is COMPLETABLE_ENABLED, field values are directly used and returned as suggestions for Autocomplete in CompletionService.CompleteQuery. If completable_option is unset, the server behavior defaults to COMPLETABLE_DISABLED for fields that support setting completable options, which are juststring
fields. For those fields that do not support setting completable options, the server will skip completable option setting, and setting completable_option for those fields will throwINVALID_ARGUMENT
error. -
dynamicFacetableOption
(type:String.t
, default:nil
) - If dynamic_facetable_option is DYNAMIC_FACETABLE_ENABLED, field values are available for dynamic facet. Could only be DYNAMIC_FACETABLE_DISABLED if FieldConfig.indexable_option is INDEXABLE_DISABLED. Otherwise, anINVALID_ARGUMENT
error will be returned. If dynamic_facetable_option is unset, the server behavior defaults to DYNAMIC_FACETABLE_DISABLED for fields that support setting dynamic facetable options. For those fields that do not support setting dynamic facetable options, such asobject
andboolean
, the server will skip dynamic facetable option setting, and setting dynamic_facetable_option for those fields will throwINVALID_ARGUMENT
error. -
fieldPath
(type:String.t
, default:nil
) - Required. Field path of the schema field. For example:title
,description
,release_info.release_year
. -
fieldType
(type:String.t
, default:nil
) - Output only. Raw type of the field. -
indexableOption
(type:String.t
, default:nil
) - If indexable_option is INDEXABLE_ENABLED, field values are indexed so that it can be filtered or faceted in SearchService.Search. If indexable_option is unset, the server behavior defaults to INDEXABLE_DISABLED for fields that support setting indexable options. For those fields that do not support setting indexable options, such asobject
andboolean
and key properties, the server will skip indexable_option setting, and setting indexable_option for those fields will throwINVALID_ARGUMENT
error. -
keyPropertyType
(type:String.t
, default:nil
) - Output only. Type of the key property that this field is mapped to. Empty string if this is not annotated as mapped to a key property. Example types aretitle
,description
. Full list is defined bykeyPropertyMapping
in the schema field annotation. If the schema field has aKeyPropertyMapping
annotation,indexable_option
andsearchable_option
of this field cannot be modified. -
recsFilterableOption
(type:String.t
, default:nil
) - If recs_filterable_option is FILTERABLE_ENABLED, field values are filterable by filter expression in RecommendationService.Recommend. If FILTERABLE_ENABLED but the field type is numerical, field values are not filterable by text queries in RecommendationService.Recommend. Only textual fields are supported. If recs_filterable_option is unset, the default setting is FILTERABLE_DISABLED for fields that support setting filterable options. When a field set to [FILTERABLE_DISABLED] is filtered, a warning is generated and an empty result is returned. -
retrievableOption
(type:String.t
, default:nil
) - If retrievable_option is RETRIEVABLE_ENABLED, field values are included in the search results. If retrievable_option is unset, the server behavior defaults to RETRIEVABLE_DISABLED for fields that support setting retrievable options. For those fields that do not support setting retrievable options, such asobject
andboolean
, the server will skip retrievable option setting, and setting retrievable_option for those fields will throwINVALID_ARGUMENT
error. -
searchableOption
(type:String.t
, default:nil
) - If searchable_option is SEARCHABLE_ENABLED, field values are searchable by text queries in SearchService.Search. If SEARCHABLE_ENABLED but field type is numerical, field values will not be searchable by text queries in SearchService.Search, as there are no text values associated to numerical fields. If searchable_option is unset, the server behavior defaults to SEARCHABLE_DISABLED for fields that support setting searchable options. Onlystring
fields that have no key property mapping support setting searchable_option. For those fields that do not support setting searchable options, the server will skip searchable option setting, and setting searchable_option for those fields will throwINVALID_ARGUMENT
error.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.DiscoveryEngine.V1beta.Model.GoogleCloudDiscoveryengineV1alphaFieldConfig{ completableOption: String.t() | nil, dynamicFacetableOption: String.t() | nil, fieldPath: String.t() | nil, fieldType: String.t() | nil, indexableOption: String.t() | nil, keyPropertyType: String.t() | nil, recsFilterableOption: String.t() | nil, retrievableOption: String.t() | nil, searchableOption: String.t() | nil }
Functions
Unwrap a decoded JSON object into its complex fields.