Hello!
I'd like to parse fully kiosk pbrowsers result from json but can't handle it
The resulting json is (part of it):
{
"foregroundApp": "de.ozerov.fully",
"appVersionName": "1.37",
"ssid": ""ssid"",
"internalStorageTotalSpace": 13478064128,
"ramUsedMemory": 829001728,
"appTotalMemory": 201326592,
"appFreeMemory": 163262656,
"internalStorageFreeSpace": 12721442816,
"batteryLevel": 100,
}
Now with jq i can get the info:
# jq .foregroundApp jq_test.json
"de.ozerov.fully"
But if i use dependent item i can not get nothing more than error "cannot extract value from json by path "$.foregroundApp":".
Parameter is: $.foregroundApp
What am i doing wrong?
Edit:
Seem's like item testing with dependent items are not working ?
I'd like to parse fully kiosk pbrowsers result from json but can't handle it

The resulting json is (part of it):
{
"foregroundApp": "de.ozerov.fully",
"appVersionName": "1.37",
"ssid": ""ssid"",
"internalStorageTotalSpace": 13478064128,
"ramUsedMemory": 829001728,
"appTotalMemory": 201326592,
"appFreeMemory": 163262656,
"internalStorageFreeSpace": 12721442816,
"batteryLevel": 100,
}
Now with jq i can get the info:
# jq .foregroundApp jq_test.json
"de.ozerov.fully"
But if i use dependent item i can not get nothing more than error "cannot extract value from json by path "$.foregroundApp":".
Parameter is: $.foregroundApp
What am i doing wrong?
Edit:
Seem's like item testing with dependent items are not working ?