I have a array of json that contains something like
[ { "sys_id": "711942771b8b9d182a5ea971604bcb1d",
"COMMON_ID": "500709491"
},{ "sys_id": "49cde5621b6791902a5ea971604bcb85",
"COMMON_ID": "500724880"
}]
I would like to rename the key COMMON_ID to EMPLID, so the output would be
[ { "sys_id": "711942771b8b9d182a5ea971604bcb1d",
"EMPLID": "500709491"
},{ "sys_id": "49cde5621b6791902a5ea971604bcb85",
"EMPLID": "500724880"
}]
I must not be searching the documentaion with the correct keywords, because I can't seem to find anything.
Any help would be appreciated.