I am trying to fetch data using elastic search with java using method .addAggregation(terms(term))
The JSON response that I am expecting is { "key" : "TEST" }
but I am getting the response as { "key" : "test" } which is in lower case, I want the response to be as it is stored. Please help here