Hi
I have a situation:
I have a Universal Json file which has a value for each jobs. So I need to grab that specific pipeline name from the json file.
Example:
{
"pipelines":[
"Sample - Long Running Job",
"pipeline4"
],
"Sample - Long Running Job":[
300
],
"pipeline4":[
60
]
}
how do i get the value of pipeline4 dynamically.

