Hey @ylluminarious, just a quick update. I found the problem as to why the hipmost private list command wasn’t working while assembling the sample data. My data set looks like:
├── metadata.json
├── rooms
│ ├── 1
│ │ ├── files
│ │ └── history.json
│ ├── 2
│ │ ├── files
│ │ └── history.json
│ │ …
├── rooms.json
├── users
│ ├── 1
│ │ └── history.json
│ ├── 2
│ │ └── history.json
│ │ …
│ ├── files
└── users.json
The problem was solved by removing the files directory located within the users directory. I can only image the code is looking for a history.json file in each directory but fails to do so when hitting the files directory.