I am trying to index a JSON object (comes from Postgres) that has sometimes-inconsistent types that is tripping me up.
an example would be:
{
"financials": {
"amount": "100"
}
},
{
"financials": {
"amount": "25.20"
}
},
There are (unfortunately!) multiple fields like this. Is there a way I can set a sort of global flag to "treat it all as text"? It's tripping up on int vs. long, etc.