JSON Array Change Task



This task allows you to monitor the value of a single JSON Array for changes.
If the Array 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:
{......,"numbers":[{"val":"1"},{"val":"2"},{"val":"3"},{"val":"4"},{"val":"5"},{"val":"6"}],....................}

Assume that the Array to monitor = numbers
If any value in the numbers array 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 numbers array is not found in the JSON file, then task exit code = 1 (error)

Maximum array size: Number of characters used to store the Array's content as a variable. The default is 1000 characters. This is NOT the size of the array (i.e. NOT element count).