Module Values.DocumentMetadataConfigurationSource

Specifies the properties, such as relevance tuning and searchability, of an index field.

Sourcetype nonrec t = {
  1. name : DocumentMetadataConfigurationName.t;
    (*

    The name of the index field.

    *)
  2. type_ : DocumentAttributeValueType.t;
    (*

    The data type of the index field.

    *)
  3. relevance : Relevance.t option;
    (*

    Provides tuning parameters to determine how the field affects the search results.

    *)
  4. search : Search.t option;
    (*

    Provides information about how the field is used during a search.

    *)
}
Sourceval context_ : string
Sourceval make : ?relevance:??? -> ?search:??? -> name:DocumentMetadataConfigurationName.t -> type_:DocumentAttributeValueType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DocumentMetadataConfigurationName.t | `Structure of (string * [> `Boolean of DocumentMetadataBoolean.t | `Enum of string | `Integer of Importance.t | `Map of ([> `String of ValueImportanceMapKey.t ] * [> `Integer of Importance.t ]) list | `String of Duration.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t