Viewset for viewing recipe actions.

GET /api/v1/action/console-log/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Cache-Control: public, max-age=30
Content-Type: application/json
Vary: Accept

{
    "name": "console-log",
    "implementation_url": "https://normandy.cdn.mozilla.net/api/v1/action/console-log/implementation/sha384-dwDUzk7p67hyOW81gMBIWnhrBFoOvbRvrt2ftxkMrqBjbADVA_1TjHuv0i7bbFrN/",
    "arguments_schema": {
        "$schema": "http://json-schema.org/draft-04/schema#",
        "title": "Log a message to the console",
        "type": "object",
        "required": [
            "message"
        ],
        "properties": {
            "message": {
                "description": "Message to log to the console",
                "type": "string",
                "default": ""
            }
        }
    }
}