I am invoking API which returns JSON as a response which I am parsing into POJO using Jackson. It is working fine but failing for below JSON array format,
{
...
"data" : [
{
"2017-12-05 21:40:33":"1537"
},
{
"2017-12-07 23:51:16":"1539"
},
{
"2017-12-12 22:57:10":"1539"
}
],
...
}
This date in key is generated at time of data captured in server side, my application invoking API which returns above format of JSON so can you please let me know how I can parse this JSON in Java POJO.
Thanks.