retrieve:
Return the details about the given Domain id.

list:
List all Domain objects.

GET /api/v1/domains/?format=api&offset=20&ordering=activated
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=activated",
    "results": [
        {
            "id": 9,
            "fr_label": "Génie mécanique",
            "en_label": "Mechanical Engineering",
            "faculty": 3,
            "activated": true
        },
        {
            "id": 10,
            "fr_label": "Science et génie des matériaux",
            "en_label": "Materials Science and Engineering",
            "faculty": 3,
            "activated": true
        },
        {
            "id": 11,
            "fr_label": "Microtechnique",
            "en_label": "Microengineering",
            "faculty": 3,
            "activated": true
        },
        {
            "id": 24,
            "fr_label": "Technologie et politiques publiques",
            "en_label": "Technology & Public Policy",
            "faculty": 6,
            "activated": true
        }
    ]
}