This is how my input looks like:
[
{
"Description": "Description 1"
"OutputKey": "OutputKey 1"
"OutputValue": "OutputValue 1"
}
{
"Description": "Description 2"
"OutputKey": "OutputKey 2"
"OutputValue": "OutputValue 2"
}
{
"Description": "Description 3"
"OutputKey": "OutputKey 3"
"OutputValue": "OutputValue 3"
}
{
"Description": "Description 4"
"OutputKey": "OutputKey 4"
"OutputValue": "OutputValue 4"
}
{
"Description": "Description 5"
"OutputKey": "OutputKey 5"
"OutputValue": "OutputValue "
}
{
"Description": "Description 6"
"OutputKey": "OutputKey 6"
"OutputValue": "OutputValue 6"
}
]
I need to loop through each object inside the array and fetch OutputKey and OutPutValue and use it in another function.
How do i loop through this array and get the desired values?
I am using GitBash on Windows box.