Values.DocumentMetadataConfigurationSourceSpecifies the properties, such as relevance tuning and searchability, of an index field.
type nonrec t = {name : DocumentMetadataConfigurationName.t;The name of the index field.
*)type_ : DocumentAttributeValueType.t;The data type of the index field.
*)relevance : Relevance.t option;Provides tuning parameters to determine how the field affects the search results.
*)search : Search.t option;Provides information about how the field is used during a search.
*)}val make :
?relevance:??? ->
?search:??? ->
name:DocumentMetadataConfigurationName.t ->
type_:DocumentAttributeValueType.t ->
unit ->
tval 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 ]