I am trying to deserialize this JSON using Jackson and I'm having trouble with the array part which as you can see has no field names. What would the java code need to look like to deserialize this?
{
"foo":[
[
"11.25",
"0.88"
],
[
"11.49",
"0.78976802"
]
],
"bar":[
[
"10.0",
"0.869"
],
[
"9.544503",
"0.00546545"
],
[
"9.5",
"0.14146579"
]
]
}
Thanks,
bc