Hello
I would like to parse a json file with an http monitor this is my json
{ "services": [ { "available": true, "operation": "Communes", "responsecode": 200, "service": "Commune Service" }, { "available": true, "operation": "Annexe Groupe", "responsecode": 200, "service": "Documents Service" }, { "available": false, "operation": "Obtenir Disponibilité", "responsecode": 500, "service": "Utilisateurs Service" }, { "available": true, "operation": "Verifier Cheque", "responsecode": 200, "service": "Platefor" }, { "available": true, "operation": "Personne", "responsecode": 200, "service": "Personne" }, { "available": true, "operation": "Recherche", "responsecode": 200, "service": "Contrat" } ] }
I would like to know how I could get the status
"available": true,
and make a warning if is set by false
thx for help !