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

{
    "echo": null,
    "total": 3,
    "per_page": 10,
    "pages": 1,
    "page": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "label": "display red",
            "description": "Display code in red."
        },
        {
            "id": 2,
            "label": "not codable",
            "description": "Prevent field from being codeable / ignore coded value."
        },
        {
            "id": 3,
            "label": "not null",
            "description": "Field must be coded before saving"
        }
    ]
}