I am working with Rxandroid and retrofit. I have a json with dynamically changing array name like this,
{
"2016-10-02": [
{
"name": "foo",
"id": "1",
"category": "bar"
},
{
"name": "foo",
"id": "2",
"category": "bar"
},
{
"name": "foo",
"id": "3",
"category": "bar"
},
{
"name": "foo",
"id": "4",
"category": "bar"
}
],
"2016-10-01": [
{
"name": "foo",
"id": "5",
"category": "bar"
},
{
"name": "foo",
"id": "6",
"category": "bar"
},
],
"2016-10-03": [
{
"name": "foo",
"id": "5",
"category": "bar"
}
]
}
The date key name for each array changes automatically and the number of array changes. In this example there are 3 arrays with date key. But the number of these array varies.
I have been through various links in stackoverflow but could not solve the issue.