I experiment with retrieving JSON objects via my custom scripts and I noticed it works when the object is in the following format:
[
{
"id": 1,
"name": "Leanne Graham",
but some apps deliver the object without the outer square brackets, as in:
{
"id": 1,
"name": "Leanne Graham",
This one does not work. I am not that familiar witj JSON so unsure which one is correct or hiw thi is called/used.