Add new appconfig for spring-boot sparky
[aai/test-config.git] / sparky / appconfig / schemas / es_settings.json
1 {
2     "analysis": {
3         "filter": {
4             "ngram_filter": {
5                 "type": "nGram",
6                 "min_gram": 1,
7                 "max_gram": 50,
8                 "token_chars": [
9                     "letter",
10                     "digit",
11                     "punctuation",
12                     "symbol"
13                 ]
14             }
15         },
16         "analyzer": {
17             "ngram_analyzer": {
18                 "type": "custom",
19                 "tokenizer": "whitespace",
20                 "filter": [
21                     "lowercase",
22                     "asciifolding",
23                     "ngram_filter"
24                 ]
25             },
26             "whitespace_analyzer": {
27                 "type": "custom",
28                 "tokenizer": "whitespace",
29                 "filter": [
30                     "lowercase",
31                     "asciifolding"
32                 ]
33             }
34         }
35     }
36 }