I have the following JSON which is considered valid:
{
"folderList": [
[
{
"folderPath": "/Test",
"userList": [
{
"userName": "Test User",
"accessType": "Read Only",
"startDate": "2.May.2014",
"endDate": "3.May.2014"
}
]
}
]
]
}
The problem is as you can see that folderList contains an array that has no name so I'm unable to get it to deserialize properly in MVC. It's pulling the current number of items (in this case, 1) but all values end up being null.
Any ideas?