Schema register_client_request.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Register Client Request",
"description": "Object defining client registration request",
"type": "object",
"properties": {
"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"
},
"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"
}
},
"response_types": {
"description": "Array of the OAuth 2.0 response type strings that the client can use at the authorization endpoint",
"type": "array",
"items": {
"type": "string"
}
},
"client_name": {
"description": "Human-readable string name of the client to be presented to the end-user during authorization",
"type": "string"
},
"client_uri": {
"description": "URL string of a web page providing information about the client",
"type": "string"
},
"logo_uri": {
"description": "URL string that references a logo for the client",
"type": "string"
},