From: Edwin Lawrance Date: Fri, 14 Sep 2018 15:12:15 +0000 (+0100) Subject: Config update to fix whitespaces issue in payload X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Ftest-config.git;a=commitdiff_plain;h=ba9b6a7151aaa4abf981e3002f5c5b9cf5328de0 Config update to fix whitespaces issue in payload Change-Id: Ib4bfe3e8fa9cff1fccc3c27723f35bb3bf415d0c Issue-ID: AAI-1596 Signed-off-by: Edwin Lawrance --- diff --git a/search-data-service/appconfig/es-payload-translation.json b/search-data-service/appconfig/es-payload-translation.json index 967a28a..b44b4ec 100644 --- a/search-data-service/appconfig/es-payload-translation.json +++ b/search-data-service/appconfig/es-payload-translation.json @@ -1,20 +1,16 @@ { "attr-translations": [ { - "from": "\"type\":\"string\",\"index\":\"analyzed\"", - "to": "\"type\":\"text\",\"index\":\"true\"" + "query": "$..[?(@.type=='string' && @.index=='analyzed')]", + "update": {"type": "text", "index": true, "fielddata": true} }, { - "from": "\"type\":\"string\",\"index\":\"not_analyzed\"", - "to": "\"type\":\"keyword\",\"index\":\"true\"" + "query": "$..[?(@.type=='string' && @.index=='not_analyzed')]", + "update": {"type": "keyword", "index": true} }, { - "from": "\"type\":\"string\"", - "to": "\"type\":\"text\"" - }, - { - "from": "searchable", - "to": "index" + "query": "$..[?(@.type=='string' && !@.index)]", + "update": {"type": "text", "fielddata": true} } ] } \ No newline at end of file