I've been messing around with some aproaches, but haven't succeeded, I've succesfully parsed JSON data before using JQuery but now I just can't figure it out.
With this code,
$.each(data, function(headers, item){
$.each(item, function(){
console.log(item[i].date_c);
i++;
});
});
I can easily read all dates of a JSON object like this one:

But right now I don't know how to reach that date on a JSON object like this one:

As you can see, there's a new level. Could you help me out?
Thanks in advance!
----------------EDIT Thanks for being interested on helping me. The JSON is preety large, but you can take a look at it from here: http://vader.rice.edu/hed2/wormsr/data.php?kw=him-5
523 is an ID, every item has a different one; and for instance, there are 4 different dates corresponding to a single ID.
$.each(item, function(){??? where isitems?? (s)date_cvalues located?