retrieve:
Return the details about the given Vulgarization id.

list:
List all Vulgarization objects.

GET /api/v1/vulgarizations/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 3,
    "results": [
        {
            "id": 1,
            "fr_label": "Tout public",
            "en_label": "General public"
        },
        {
            "id": 2,
            "fr_label": "Public averti",
            "en_label": "Informed public"
        },
        {
            "id": 3,
            "fr_label": "Expert",
            "en_label": "Expert"
        }
    ]
}