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.