Type alias TextAnalyzerDescription
Text
AnalyzerDescription: GenericAnalyzerDescription & {
properties: {
accent: boolean;
case: "lower" | "none" | "upper";
edgeNgram: {
max: number;
min: number;
preserveOriginal: boolean;
};
locale: string;
stemming: boolean;
stopwords: string[];
stopwordsPath: string;
};
type: "text";
}
An object describing a Text Analyzer.