Hello, I get a json on this template from a request
{
"alunos":[
{
"ID":"1",
"Nome":"Pedro",
},
{
"ID":"2",
"Nome":"Lucas",
},
{
"ID":"3",
"Nome":"Joana",
}
]
}
I would like a good example of how to store it in a local variable, for later use, would array be a good choice?