Schema register_client_response.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Register Client Response",
"description": "Object defining successful client registration",
"type": "object",
"properties": {
"client_id": {
"description": "OAuth 2.0 client identifier string",
"type": "string"
},
"client_secret": {
"description": "OAuth 2.0 client secret string",
"type": "string"
},
"client_id_issued_at": {
"description": "UTC time at which the client identifier was issued",
"type": "number"
},
"client_secret_expires_at": {
"description": "Time at which the client secret will expire or 0 if it will not expire",
"type": "number"
},
"redirect_uris": {
"description": "Array of redirection URI strings for use in redirect-based flows such as the authorization code and implicit flows",
"type": "array",
"items": {
"type": "string"
}
},
"token_endpoint_auth_method": {
"description": "String indicator of the requested authentication method for the token endpoint",
"type": "string",
"default": "client_secret_basic"
},
"grant_types": {
"description": "Array of OAuth 2.0 grant type strings that the client can use at the token endpoint",
"type": "array",
"items": {
"type": "string"
},
"default": [ "authorization_code" ]
},
"response_types": {