I'm trying to avoid using an external check check but I'm not seeing how http agent / jsonpath would would work in my case.
The json that I'm handling looks something like the following. The size of the list is indefinite.
[{'id":1,"status":true}{"id":2,"status":false}{"id" :3,"status"}]
I need to iterate over the list and, if status=false, raise an alert. This means I need to handle the id/status tuple. Looking through the http agent docs, it seems more geared for querying objects in fixed locations. Have I got this wrong?
The json that I'm handling looks something like the following. The size of the list is indefinite.
[{'id":1,"status":true}{"id":2,"status":false}{"id" :3,"status"}]
I need to iterate over the list and, if status=false, raise an alert. This means I need to handle the id/status tuple. Looking through the http agent docs, it seems more geared for querying objects in fixed locations. Have I got this wrong?

Comment