I have a file, json file, I want to access all the elements inside it. How do I do it. File structure is like this
{
"Sessions": [
{
"AppVersion": "2.4.0",
"Connectivity": "Cellular",
"Device": "iPhone 6 Plus",
"DeviceType": "Phone",
"Duration": 958616,
"Id": "591e3580e3f5fb2ade29f4d8",
"Location": {
"Country": "US",
"Description": "Cleveland Texas"
},
"OSVersion": "10.3.1",
"Platform": "iOS",
"Screens": [
{
"Actions": [],
"Gestures": [],
"Name": "LoginPage",
"StartTime": 0
},
{
"Actions": [
{
"Description": "Image",
"Index": "2.23",
"Time": 46179,
"Type": "ButtonTap"
},
{
"Description": "Image",
"Index": "2.23",
"Time": 46735,
"Type": "ButtonTap"
}, ]}
......100 elements
I can only access Sessions, not inside of it, like if I want to access "Time", how that can be done?