// NOTE: always check with has(...) as the json might not have all required
// fields set.
if (jsonObject.has("1")) {
JsonArray array = jsonObject.get("1").getAsJsonArray();
for (int i = 0; i < array.size(); i++) {
FetchedProfileGsonImpl payload = new FetchedProfileGsonImpl();
GsonUtil.extractJsonObject(payload, array.get(i), gson, raw);
addProfiles(payload);
}
}
}