retrieve:
Return the details about the given Domain id.

list:
List all Domain objects.

GET /api/v1/domains/?format=api&offset=20&ordering=-id
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 24,
    "next": null,
    "previous": "https://memento.epfl.ch/api/v1/domains/?format=api&limit=10&offset=10&ordering=-id",
    "results": [
        {
            "id": 4,
            "fr_label": "Ville et Territoire",
            "en_label": "Urban Planning",
            "faculty": 1,
            "activated": true
        },
        {
            "id": 3,
            "fr_label": "Ingénierie de l'environnement",
            "en_label": "Environmental Engineering",
            "faculty": 1,
            "activated": true
        },
        {
            "id": 2,
            "fr_label": "Ingénierie civile",
            "en_label": "Civil Engineering",
            "faculty": 1,
            "activated": true
        },
        {
            "id": 1,
            "fr_label": "Architecture",
            "en_label": "Architecture",
            "faculty": 1,
            "activated": true
        }
    ]
}