Process VNF event from spike
[aai/data-router.git] / src / main / resources / autosuggest_schema.json
1 {
2         "settings": {
3                 "analysis": {
4                         "filter": {
5                                 "eng_stop": {
6                                         "type": "stop",
7                                         "stopwords": "_english_"
8                                 }
9                         },
10                         "analyzer": {
11                                 "custom_analyzer": {
12                                         "type": "custom",
13                                         "tokenizer": "standard",
14                                         "filter": ["lowercase", "asciifolding", "eng_stop"]
15                                 }
16                         }
17                 }
18         },
19         "mappings": {
20                 "default": {
21                         "properties": {
22                                 "entity_suggest": {
23                                         "type": "completion",
24                                         "payloads": true,
25                                         "analyzer": "custom_analyzer",
26                                         "preserve_position_increments": false
27                                 }
28                         }
29                 }
30         }
31 }