Module Values.AnalysisSchemeSource

Configuration information for an analysis scheme. Each analysis scheme has a unique name and specifies the language of the text to be processed. The following options can be configured for an analysis scheme: Synonyms, Stopwords, StemmingDictionary, JapaneseTokenizationDictionary and AlgorithmicStemming.

Sourcetype nonrec t = {
  1. analysisSchemeName : StandardName.t;
  2. analysisSchemeLanguage : AnalysisSchemeLanguage.t;
  3. analysisOptions : AnalysisOptions.t option;
}
Sourceval context_ : string
Sourceval make : ?analysisOptions:??? -> analysisSchemeName:StandardName.t -> analysisSchemeLanguage:AnalysisSchemeLanguage.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StandardName.t | `Structure of (string * [> `Enum of string | `String of String_.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