Hi,
I have data which has any datatype in a dictionary as mentioned below,
Sample JSON:
{
"custom_some_random_string": {
"Name": "John",
"Birthday": "2018-1-09T23:10:11Z",
"Location": {
"lat": "99.7",
"lon": "22.9"
},
"Age": "34"
}
}
I have to store the above JSON as it is without datatype detection. Also need to do free text search with filters
query string : "John"
includefields: custom_*
Can anyone help me out for this problem?