I have a JSON dictionary that looks like this:
{
"111": {"dates" : [<array_of_dates>],
"members" : [<array_of_members>]},
"112": {"dates" : [<array_of_dates>],
"members" : [<array_of_members>]},
"113": {"dates" : [<array_of_dates>],
"members" : [<array_of_members>]}
}
As you can see, the key for the nested dictionary is variable (111, 112, 113).
So far, every Mantle model I have made has fixed keys so I don't know how to handle this particular situation.
Any ideas?