Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame^] | 1 | { |
2 | "attr-translations": [ | ||||
3 | { | ||||
4 | "query": "$..[?(@.type=='string' && @.index=='analyzed')]", | ||||
5 | "update": {"type": "text", "index": true, "fielddata": true} | ||||
6 | }, | ||||
7 | { | ||||
8 | "query": "$..[?(@.type=='string' && @.index=='not_analyzed')]", | ||||
9 | "update": {"type": "keyword", "index": true} | ||||
10 | }, | ||||
11 | { | ||||
12 | "query": "$..[?(@.type=='string' && !@.index)]", | ||||
13 | "update": {"type": "text", "fielddata": true} | ||||
14 | } | ||||
15 | ] | ||||
16 | } | ||||
17 |