I have a json that start with an object that contains all the rest :
{
"mainObject":
{
"other stuff here 1" : "aaa",
"other stuff here 2" : "bbb",
...
"other stuff here 2000" : "zassbbb"
}
}
I get the entire json and put it into object, how i can discard the "mainObject" part and get only the most inner part? I would to have in the my object :
"other stuff here 1" : "aaa",
"other stuff here 2" : "bbb",
...
"other stuff here 2000" : "zassbbb"