🔍 Analyse structure attachments CATS

📊 Structure complète de la réponse :

{
    "count": 1,
    "total": 1,
    "_links": {
        "self": {
            "href": "\/candidates\/360241009\/attachments"
        }
    },
    "_embedded": {
        "attachments": [
            {
                "id": 572062648,
                "filename": "-CV Gwendoline DEMONCHY-.pdf",
                "is_resume": true,
                "data_item": {
                    "id": 360241009,
                    "type": "candidate"
                },
                "_links": {
                    "self": {
                        "href": "\/attachments\/572062648"
                    },
                    "download": {
                        "href": "\/attachments\/572062648\/download"
                    },
                    "data_item": {
                        "href": "\/candidates\/360241009"
                    }
                }
            }
        ]
    }
}

🔍 Analyse des clés :

Clés racine : count, total, _links, _embedded

Clés dans _embedded : attachments

📎 Contenu de _embedded.attachments :

Nombre d'éléments : 1

Premier élément :
{
    "id": 572062648,
    "filename": "-CV Gwendoline DEMONCHY-.pdf",
    "is_resume": true,
    "data_item": {
        "id": 360241009,
        "type": "candidate"
    },
    "_links": {
        "self": {
            "href": "\/attachments\/572062648"
        },
        "download": {
            "href": "\/attachments\/572062648\/download"
        },
        "data_item": {
            "href": "\/candidates\/360241009"
        }
    }
}
Clés de structure :

id, filename, is_resume, data_item, _links

đź’ˇ Recommandations :