{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "Describes the client registration endpoint's OAuth error response",
    "minItems": 1,
    "properties": {
        "error": {
            "description": "Error Type",
            "enum": [
                "invalid_redirect_uri",
                "invalid_client_metadata",
                "invalid_software_statement",
                "unapproved_software_statement"
            ],
            "type": "string"
        },
        "error_description": {
            "description": "Human-readable ASCII text providing additional information",
            "type": "string"
        },
        "error_uri": {
            "description": "A URI identifying a human-readable web page with information about the error",
            "format": "uri",
            "type": "string"
        }
    },
    "required": [
        "error"
    ],
    "title": "Client Registration Error Response",
    "type": "object"
}
