JSON Loop

This task allows you to loop through data in a JSON file.
An Array name needs to be specified. This Array can be located anywhere within the JSON structure.
With every loop, the contents of each array row are set as variables.
With every loop, you can run another task.


Consider the following JSON file:
{"numbers":[11,22,43,54]}
The array name is numbers. The task will run 4 loops. In each loop it will set a variable value (11 or 22 etc..). It will also run a task that you specify.

Consider the following JSON file:
{"friends":[
{"name":"joe","age":"12"},
{"name":"jeff","age":"13"},
{"name":"jack","age":"12"}
]}
The array name is friends. It has 3 objects (i.e. 3 loops to run).
In each loop it will set name=joe and age=12 etc.. It will also run a task that you specify.