05-30-2023 01:03 PM
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”
}
]
}
Solved! Go to Solution.
05-30-2023 01:53 PM
05-30-2023 01:53 PM
Try this one
05-31-2023 12:31 AM
Thank you and it works!
05-31-2023 07:30 AM
No problem, pls mark my reply as solution so that it would help others.