ForgeRock · Schema
OIDCConfiguration
OpenID Connect discovery metadata
Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect
Properties
| Name | Type | Description |
|---|---|---|
| issuer | string | |
| authorization_endpoint | string | |
| token_endpoint | string | |
| userinfo_endpoint | string | |
| jwks_uri | string | |
| registration_endpoint | string | |
| scopes_supported | array | |
| response_types_supported | array | |
| grant_types_supported | array | |
| subject_types_supported | array | |
| id_token_signing_alg_values_supported | array | |
| token_endpoint_auth_methods_supported | array | |
| claims_supported | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OIDCConfiguration",
"title": "OIDCConfiguration",
"type": "object",
"description": "OpenID Connect discovery metadata",
"properties": {
"issuer": {
"type": "string",
"format": "uri"
},
"authorization_endpoint": {
"type": "string",
"format": "uri"
},
"token_endpoint": {
"type": "string",
"format": "uri"
},
"userinfo_endpoint": {
"type": "string",
"format": "uri"
},
"jwks_uri": {
"type": "string",
"format": "uri"
},
"registration_endpoint": {
"type": "string",
"format": "uri"
},
"scopes_supported": {
"type": "array",
"items": {
"type": "string"
}
},
"response_types_supported": {
"type": "array",
"items": {
"type": "string"
}
},
"grant_types_supported": {
"type": "array",
"items": {
"type": "string"
}
},
"subject_types_supported": {
"type": "array",
"items": {
"type": "string"
}
},
"id_token_signing_alg_values_supported": {
"type": "array",
"items": {
"type": "string"
}
},
"token_endpoint_auth_methods_supported": {
"type": "array",
"items": {
"type": "string"
}
},
"claims_supported": {
"type": "array",
"items": {
"type": "string"
}
}
}
}