How to make structure nested firebase in Arduino IDE use nodeMCU ESP8266

I have some problems with the code projects about how to make a nested structure like this. Can someone tell me how to make a structure firebase like this?
Firebase

And this is my example code

DateTime now = rtc.now();
      sprintf(waktu, "%02d:%02d", now.hour(), now.minute());
      sprintf(tanggal, "%02d-%02d-%02d", now.year(),now.month(), now.day());

      // append a new value to /logs
      String jam_fr = Firebase.pushString("/Status Pasien/ID/jam ", waktu);
      String kondisi_fr = Firebase.pushString("/Status Pasien/ID/kondisi ", kondisi[0]);
      String tanggal_fr = Firebase.pushString("/Status Pasien/ID/tanggal ", tanggal);

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.