[AAI] Reintegrate AAI OOM charts in main repo
[oom.git] / kubernetes / aai / components / aai-search-data / resources / config / analysis-config.json
1 [\r
2         {\r
3                 "name": "whitespace_analyzer", \r
4                 "description": "A standard whitespace analyzer.",\r
5                 "behaviours": [\r
6                         "Tokenize the text using white space characters as delimeters.",\r
7                         "Convert all characters to lower case.",\r
8                         "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents."\r
9                 ],\r
10                 "tokenizer": "whitespace",\r
11                 "filters": [\r
12                         "lowercase",\r
13                         "asciifolding"\r
14                 ]\r
15         },\r
16         {\r
17                 "name": "ngram_analyzer", \r
18                 "description": "An analyzer which performs ngram filtering on the data stream.",\r
19                 "behaviours": [\r
20                         "Tokenize the text using white space characters as delimeters.",\r
21                         "Convert all characters to lower case.",\r
22                         "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents.",\r
23                         "Apply ngram filtering using the following values for minimum and maximum size in codepoints of a single n-gram: minimum = 1, maximum = 2."\r
24                 ],\r
25                 "tokenizer": "whitespace",\r
26                 "filters": [\r
27                         "lowercase",\r
28                         "asciifolding",\r
29                         "ngram_filter"\r
30                 ]\r
31         }\r
32 ]