In short I have this JSON configuration that looks like this:
{
    "Users" : {
        "182723618273612" : 15,
        "AddedUser" : 1
    }
}
I created the field through a JavaScript function, but Im trying to figure out how I can change the name of "AddedUser". I do NOT want t o change the value (1), I just want to change "AddedUser" to be another ID.
It should look like this:
{
    "Users" : {
        "182723618273612" : 15,
        "693582876127862" : 1
    }
}
 
    