Lists all the permissions that we have in the system.

The payload returned format is:
{
"data": [
{
"name": "Can submit solutions data and view own data",
"value": "solutions_editor"
},
{
"name": "Can submit indicators data and view own data",
"value": "indicators_editor"
},
{
"name": "Can manage all solutions data",
"value": "solutions_owner"
}
]
}

GET /api/v1/roles/permissions/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/vnd.api+json
Vary: Accept

{
    "data": [
        {
            "label": "Can manage users",
            "value": "user_creation"
        },
        {
            "label": "Can manage roles and permissions",
            "value": "user_permissions"
        },
        {
            "label": "Can submit and view own data",
            "value": "solutions_editor"
        },
        {
            "label": "Can submit and view own data",
            "value": "indicators_editor"
        },
        {
            "label": "Can manage all data",
            "value": "solutions_owner"
        },
        {
            "label": "Can manage all data",
            "value": "indicators_owner"
        },
        {
            "label": "Can only view data",
            "value": "solutions_readonly-no-download"
        },
        {
            "label": "Can only view data",
            "value": "indicators_readonly-no-download"
        },
        {
            "label": "Can view and download data",
            "value": "solutions_readonly"
        },
        {
            "label": "Can view and download data",
            "value": "indicators_readonly"
        }
    ]
}