summaryrefslogtreecommitdiffstats
path: root/sparky/appconfig/schemas/autoSuggestSettings.json
blob: 4525be12fc7a4c28b46856ecd9d45da40ab5a856 (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"
	                ]
	            }
	        }
    	}
   }