Get json file id value

Hello, I need help, I’m trying to get the id values ​​from a json file, so far I’m using this formula, but it only gets the first entry LOOKUP(LOOKUP(appVars.comentarios.arquivo_json1, 0, “id”)
Does anyone know how to tell me the formula to get the id example:

[
{
“id”: 37,
“locale”: null,
“nome”: “Marciano”,
“e-mail”: “marciano@gmail.com”,
“comentario”: “Olá só tenho a agradecer …”,
“like”: “135”,
“deslike”: “5”,
“presente”: “3”,
“resposta”: [
{
“id”: 38,
“locale”: “pt_BR”,
“nome”: “Fernanda”,
“email”: “fernanda@gmail.com”,
“comentario”: “Resposta ao comentário m”,
“like”: “1234”,
“deslike”: “1”,
“presente”: “3”,
“respondendoaquem”: “Marciano”,
“emaildequem”: “marciano@gmail.com
},
{
“id”: 40,
“locale”: “pt_BR”,
“nome”: “Teste”,
“email”: “ruanmmm@gmail.com”,
“comentario”: “somente um teste”,
“like”: “11”,
“deslike”: “2”,
“presente”: “2”,
“respondendoaquem”: “Marciano”,
“emaildequem”: “dasdasdas@gmail.com
}
]
},
{
“id”: 39,
“locale”: null,
“nome”: “Luiz adriano”,
“e-mail”: “luizadriano@gmail.com”,
“comentario”: “Olá esse comentário é somente um teste”,
“like”: “15”,
“deslike”: “2”,
“presente”: “1”,
“resposta”: [

]

},
{
“id”: 41,
“locale”: “pt_BR”,
“nome”: “Luiz1”,
“e-mail”: “fdsfsdf@gmail.com”,
“comentario”: “Olá mundo”
}
]
get id in this format: 123,123,123

solution: MAP(appVars.comentarios.arquivo_json1, item.id)