list: API endpoint for returning a list of publishers.
retrieve: API endpoint for returning a particular publisher.

GET /v2/publishers/?format=api&ordering=-name
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 6,
    "next": null,
    "previous": null,
    "results": [
        {
            "key": "wizards-of-the-coast",
            "name": "Wizards of the Coast"
        },
        {
            "key": "somanyrobots",
            "name": "Somanyrobots"
        },
        {
            "key": "open5e",
            "name": "Open5e"
        },
        {
            "key": "kobold-press",
            "name": "Kobold Press"
        },
        {
            "key": "green-ronin",
            "name": "Green Ronin Publishing"
        },
        {
            "key": "en-publishing",
            "name": "EN Publishing"
        }
    ]
}