ya ,structure is valid , it's just snippet of whole JSON file, Just wanna know how to access enclosure array
QJsonDocument jsonResponse = QJsonDocument::fromJson(strReply.toUtf8());
QJsonObject jsonObject = jsonResponse.object();

QJsonValue value = jsonObject.value("enclosures");
QJsonArray array = value.toArray();


I have tried this but it is not working