OIDC Client Register - Additional data not stored

I've been looking into where the data is stored for ODIC clients that are registered. It seems the API excepts a lot of information but only stores the about 3 data points.
client_name: "My App",
client_uri: "https://client.example.com",
redirect_uris: ["https://client.example.com/callback"],

Where is all the other configuration information stored?

scope: "profile email",
contacts: ["admin@example.com"],
tos_uri: "https://client.example.com/tos",
policy_uri: "https://client.example.com/policy",
jwks_uri: "https://client.example.com/jwks",
jwks: {"keys": [{"kty": "RSA", "alg": "RS256", "use": "sig", "n": "...", "e": "..."}]},
metadata: {"key": "value"},
software_id: "my-software",
software_version: "1.0.0",
software_statement,
token_endpoint_auth_method: "client_secret_basic",
grant_types: ["authorization_code"],
response_types: ["code"],
Was this page helpful?