{
  "issuer": "https://id.example.com",
  "authorization_endpoint": "https://id.example.com/oauth2/authorize",
  "token_endpoint": "https://id.example.com/oauth2/token",
  "introspection_endpoint": "https://id.example.com/oauth2/introspect",
  "revocation_endpoint": "https://id.example.com/oauth2/revoke",
  "registration_endpoint": "https://id.example.com/oauth2/register",
  "pushed_authorization_request_endpoint": "https://id.example.com/oauth2/par",
  "require_pushed_authorization_requests": false,
  "jwks_uri": "https://id.example.com/oauth2/jwks.json",
  "scopes_supported": [
    "openid",
    "profile",
    "email",
    "catalog.read",
    "catalog.write"
  ],
  "response_types_supported": [
    "code",
    "code id_token"
  ],
  "response_modes_supported": [
    "query",
    "fragment",
    "form_post"
  ],
  "grant_types_supported": [
    "authorization_code",
    "refresh_token",
    "client_credentials"
  ],
  "token_endpoint_auth_methods_supported": [
    "client_secret_basic",
    "private_key_jwt",
    "none"
  ],
  "token_endpoint_auth_signing_alg_values_supported": [
    "RS256",
    "ES256"
  ],
  "code_challenge_methods_supported": [
    "S256"
  ],
  "dpop_signing_alg_values_supported": [
    "ES256",
    "RS256"
  ],
  "service_documentation": "https://id.example.com/docs",
  "ui_locales_supported": [
    "en",
    "de",
    "fr-CA"
  ],
  "op_policy_uri": "https://id.example.com/policy",
  "op_tos_uri": "https://id.example.com/terms"
}
