JSON Object Change Task



This task allows you to monitor the value of a single JSON Object for changes.
If the Object changes compared to the previous run of the task, then a task specified in the task to run field is run.

Consider the following JSON file:
{"cows":{"type":"brown cows","totalOnFarm":"1035"},"dogs":{"type":"guard dogs","total":"5"}}

Assume that the Object to monitor = cows
If any value in the cows object changes, then task exit code = -100. Any task specified in the task to run field will be run.
If no values change, then task exit code = 0
If the cows object is not found in the JSON file, then task exit code = 1 (error)

Maximum object size: Number of characters used to store the Object's content as a variable. The default is 1000 characters. This is NOT the size of the object in bytes.