{
    "title": "list_roles reply v1",
    "description": "",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "https://api.nextpertise.nl/schemas/user/list_roles_reply_v1.json",
    "type": "object",
    "properties": {
        "roles": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "name": {
                        "type": "string"
                    },
                    "description": {
                        "type": [
                            "string",
                            "null"
                        ]
                    }
                },
                "additionalProperties": false,
                "required": [
                    "name",
                    "description"
                ]
            }
        }
    },
    "additionalProperties": false
}