I have something like the following json string:
{"values" : [ { "group":"A" "rating":2 }, { "group":"B" "language":"english" } ] }
As you can see, "values" is an array, with different type of objects. One type can contain a string and an integer, and the other type contains a string and another string.
How do I deal with this?