JSON Reader
Read a value of any JSON object. You can specify this Input Object
from any DataSource as a string or JS object. The Read path
is the path seperated by dots to the value you want to read. Arrays are also supported by dots by using the index e.g.:
{
"data":{
"cars":[
{
"name":"car1",
"speed":120
},{
"name":"car2",
"speed":140
}
]
}
}
Read path
: data.cars.0.speed
will give us 120
as a result.