Skip to main content

JSON elements reader

Read a JSON file elements by elements. For example:

A JSON file
{
"elements": [
{ "name": "element1", "value": "value1" },
{ "name": "element2", "value": "value2" },
{ "name": "element3", "value": "value3" }
]
}
Reader configuration
JSON path: $.elements

Parameters

JSON pathREQUIRED

The JSON path to the elements to read (For example: $.elements).

Output

JSON Element

The current element being read from the JSON file.