In the JSON file images may be stored as an array of objects that consist of e.g. image id and image URL.
{"data": [ {"product_code":"A012345","product_name":"Sitting Jazz Band Strings","product_images": [ {"id":5856,"image":"https://warehouse.com/images/A012345.jpeg" }, {"id":5857,"image":"https://warehouse.com/images/A012345_1.jpeg" } ] } ]}
In this case use the following settings:
Image URL: product_images[0].image
Image URL: product_images[1].image
Image URL: product_images[2].image
Please note that the indexing of array elements in JSON starts at 0.
You can add fields up to the highest expected number of images. This will not cause an error, even if there is no link to the image on the given index.