Schemas revocation endpoint

{
"title": "RevocationRequest",
"type": "object",
"properties": {
"client_assertion": {
"title": "Client Assertion",
"pattern": "^[a-zA-Z\\_\\-0-9]+\\.[a-zA-Z\\_\\-0-9]+\\.[a-zA-Z\\_\\-0-9]+",
"type": "string"
},
"client_assertion_type": {
"title": "Client Assertion Type",
"enum": [
"urn:ietf:params:oauth:client-assertion-type:jwt-bearer"
],
"type": "string"
},
"client_id": {
"title": "Client Id",
"minLength": 1,
"maxLength": 2083,
"format": "uri",
"type": "string"
},
"token": {
"title": "Token",
"pattern": "^[a-zA-Z\\_\\-0-9]+\\.[a-zA-Z\\_\\-0-9]+\\.[a-zA-Z\\_\\-0-9]+",
"type": "string"
}
},
"required": [
"client_assertion",
"client_assertion_type",
"client_id",
"token"
]
}