cancel
Showing results for 
Search instead for 
Did you mean: 

Attribute name change in array with mapper

srini_polimera
New Contributor III

Hi,

Could you please help me to change attribute names from input json?

Input

{
“title”: “students”,
“items”:
[
{
“name”: “Tom Cruise”,
“course”: “EEE”
},
{
“name”: “Robert Downey Jr.”,
“course”: “CSC”
}
]
}

I need to change output as

{
“title”: “students”,
“items”:
[
{
Name”: “Tom Cruise”,
Course”: “EEE”
},
{
Name”: “Robert Downey Jr.”,
Course”: “CSC”
}
]
}

1 ACCEPTED SOLUTION

Senthilnaga91
New Contributor II
3 REPLIES 3

Senthilnaga91
New Contributor II

Try this one

image

image

image

Thank you and it works!

Senthilnaga91
New Contributor II

No problem, pls mark my reply as solution so that it would help others.