4
I wonder how to get all the values of a part of the JSON:
{
    "Message": "The request is invalid.",
    "ModelState": {
        "produto.pro_descricao": ["Informe a descrição do Produto."],
        "produto.pro_grupo": ["Grupo informado inexistente."]
    }
}
Where I’d like to get all the values from the ModelState and put them in a string.
Thus remaining:
Please provide the description of the Product. Group reported missing.
With the code below:
jSubPar := LJSONObject.Get('ModelState');
I got the following result:
"ModelState": {
    "produto.pro_descricao": ["Informe a descrição do Produto."],
    "produto.pro_grupo": ["Grupo informado inexistente."]
}
But I only need the descriptions.