I have a deeply nested JSON object with some arbitary value as the name. I can not know the value ahead. A simplified example below. I can't seem to think of a way to get the value I need
{
   "bigJSON":{
      "5":{
         "3":[
            {
               "week":{
                  "name":"John",
                  "length":25
               }
            },
            {
               "week":{
                  "name":"John1",
                  "length":95
               }
            }
         ]
      },
      "6":{
         "2":[
            {
               "week":{
                  "name":"John3",
                  "length":45
               }
            },
            {
               "week":{
                  "name":"Merlin",
                  "length":25
               }
            }
         ]
      }
   }
}
I need to get the array from bigJSON['5']['3'] , bigJSON['6']['2'] etc , but I can't know the values of 5,3,6,2 etc ahead of time. Help will be apprecaited.
 
    