blob: 8a29863bf38eb034864ad96c812aed769c70bf6b [file] [log] [blame]
Sylvain Desbureaux70070412020-11-09 21:58:48 +01001{
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