I'm trying to iterate over this object containing a array of quests-objects. How would i be able to iterate over each key value pairs to for example return all quests which have the status "completed".
{
"quests": [
{
"title": "A Rum Deal",
"status": "COMPLETED",
"difficulty": 2,
"members": true,
"questPoints": 2,
"userEligible": true
}
],
"loggedIn": false
}