aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/charts/aai-sparky-be/resources/config/schemas/autoSuggestSettings.json
blob: 97549f09eac74ce61de0c549156c8207c3b9ae1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
        "analysis": {
        	"filter": {
                "eng_stop": {
                    "type":       "stop",
                    "stopwords": "_english_"
                }
            },
	        "analyzer": {
	            "custom_analyzer": {
	                "type": "custom",
	                "tokenizer": "standard",
	                "filter": [
	                	"lowercase",
	                    "asciifolding",
	                    "eng_stop"
	                ]
	            }
	        }
    	}
   }