I'm using JSON Path to extract a some data from a json object.
The object looks like this:
{
"properties":
{
"random_field": "abc",
"max value": "£35,900"
}
}
My JSON path looks like this:
insert into display_paths (type,name,jsonpath) values ('type','Value (£)','$.properties.[''max value'']');
Annoyingly, this is returning the value without the ',', instead replacing it with a space:
Value (£): £35 900
Has anyone had a similar issue? Potentially it is a front end issue as opposed to a json path issue?