nlohmann json: json j; ifstream ifs(*File); if (!ifs.is_open()) { //return false;; } ifs >> j; ifs.close(); for (auto& elm : j.items()) { json arr = elm.value(); json obj = elm.key(); const char *objName = elm.key().data() ; // ... }