retrieve:
Return the details about the given Domain id.

list:
List all Domain objects.

GET /api/v1/domains/?format=api&offset=20&ordering=-fr_label
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=-fr_label",
    "results": [
        {
            "id": 15,
            "fr_label": "Bioingénierie",
            "en_label": "Bioengineering",
            "faculty": 2,
            "activated": true
        },
        {
            "id": 12,
            "fr_label": "Bioengineering",
            "en_label": "Bioengineering",
            "faculty": 3,
            "activated": true
        },
        {
            "id": 22,
            "fr_label": "Area & cultural studies",
            "en_label": "Area & Cultural Studies",
            "faculty": 7,
            "activated": true
        },
        {
            "id": 1,
            "fr_label": "Architecture",
            "en_label": "Architecture",
            "faculty": 1,
            "activated": true
        }
    ]
}