Educational background (not that it matters)

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

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "school": "University of Santo Tomas",
            "course": "BS in Civil Engineering",
            "year_started": 2003,
            "year_graduated": 2008
        },
        {
            "school": "University of the Philippines - Diliman",
            "course": "MS in Civil Engineering (Geotechnical Engineering)",
            "year_started": 2011,
            "year_graduated": 2016
        }
    ]
}