Schemas introspection endpoint

{
"title": "IntrospectionRequest",
"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"
]
}

{
"title": "IntrospectionResponse",
"type": "object",
"properties": {
"active": {
"title": "Active",
"type": "boolean"
}
},
"required": [
"active"
]
}

{
"title": "IntrospectionErrorResponseSpid",
"type": "object",
"properties": {
"error_description": {
"title": "Error Description",
"type": "string"
},
"error": {
"title": "Error",
"enum": [
"invalid_client",
"invalid_request",
"server_error",
"temporarily_unavailable"
],
"type": "string"
}
},
"required": [
"error_description",
"error"
]
}