I am working with an api that gives data about transportation schedules, and the response is organized by dates with times nested inside the dates. A response looks something like the following:
object = {
2016-07-27: {
09:30:00: {
// data here
}
13:00:00: {
// data here
}
}
2016-07-28: {
09:30:00: {
// data here
}
13:00:00: {
// data here
}
}
}
I want to be able to get into the time objects to get the data I need.
Thank you!