I am new in json. I want information user in various time and add them to diffrent lists.
My json text is like this -
{ "201322052":{
"Sat Aug 04 04:14:03":"https://blablabla",
"Sat Aug 04 04:19:55":"https://blablabla2"},
"Doctor 201322052":{
"Sat Aug 04 04:19:35":"https://bla bla bla 3" },
"JrPwbApfIHbQhCUmVIoiVJcPYv93":{
"Sat Aug 04 04:02:47":{
"Misc":"sdasd",
"Product":"asd",
"address":"sd",
"name":"Dr. Bua"
},
"Sat Aug 04 04:03:21":{
"Misc":"sdasd",
"Product":"asd",
"address":"sd",
"name":"Dr. Bua"
},
"Sat Aug 04 04:03:28":{
"Misc":"sdasd",
"Product":"asd",
"address":"sd",
"name":"Dr. Bua"
},
"Sat Aug 04 04:03:31":{
"Misc":"sdasd",
"Product":"asd",
"address":"sd",
"name":"Dr. Bua"
}
}}
from a firebase database. I want to extract information of "JrPwbApfIHbQhCUmVIoiVJcPYv93" in this format-
DocName-----------Adress------Product----------Misc-------time
Dr. Bua---------Mirpur---------asd-------------sdsds------Sat Aug 04 04:02:47
Dr. Bua---------Mirpur---------asd-------------sdsds------Sat Aug 04 04:03:28
Dr. Bua---------Mirpur---------asd-------------sdsds------Sat July 04 04:03:28
I guess you get the idea. In my last question about extracting information I got a huge help from Mr. John Wu. I understand I need to do the same in here, but cannot get how to extract node "JrPwbApfIHbQhCUmVIoiVJcPYv93" from whole json separately and then apply that again.