Check out my json file below:
{
"foo": "https://3a1821d0.ngrok.io/api/foo",
"bar": "https://3a1821d0.ngrok.io/api/bar",
}
I am interested in changing the key 3a1821d0
to a different variable within the json structure, like so:
{
"some_variable": 3a1821d0,
},
{
"foo": "https://some_variable.ngrok.io/api/foo",
"bar": "https://some_variable.ngrok.io/api/bar",
}
Wondering if this is doable? And if it is, what would be the process for achieving it?