This viewset automatically provides `list`, `create`, `retrieve`,
`update` and `destroy` actions.

Additionally we also provide an extra `highlight` action.

GET /api/v1/snippets/704/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "http://demo.scanapi.dev/api/v1/snippets/704/?format=api",
    "id": 704,
    "highlight": "http://demo.scanapi.dev/api/v1/snippets/704/highlight/?format=api",
    "owner": "cumbuquita_ao_vivo",
    "title": "Hello World",
    "code": "print('hello world')",
    "linenos": false,
    "language": "python",
    "style": "xcode"
}