summaryrefslogtreecommitdiffstats
path: root/sparky/appconfig/schemas/autoSuggestSettings.json
diff options
context:
space:
mode:
Diffstat (limited to 'sparky/appconfig/schemas/autoSuggestSettings.json')
-rw-r--r--sparky/appconfig/schemas/autoSuggestSettings.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/sparky/appconfig/schemas/autoSuggestSettings.json b/sparky/appconfig/schemas/autoSuggestSettings.json
new file mode 100644
index 0000000..4525be1
--- /dev/null
+++ b/sparky/appconfig/schemas/autoSuggestSettings.json
@@ -0,0 +1,21 @@
+{
+ "analysis": {
+ "filter": {
+ "eng_stop": {
+ "type": "stop",
+ "stopwords": "_english_"
+ }
+ },
+ "analyzer": {
+ "custom_analyzer": {
+ "type": "custom",
+ "tokenizer": "standard",
+ "filter": [
+ "lowercase",
+ "asciifolding",
+ "eng_stop"
+ ]
+ }
+ }
+ }
+ } \ No newline at end of file