Okta · Schema
OpenIdConnectApplicationSettingsClient
IdentityWorkforce IdentityCustomer IdentityAuthenticationAuthorizationSingle Sign-OnMulti-Factor AuthenticationIdentity GovernancePrivileged AccessAI AgentsCross-App AccessMCPPlatform
Properties
| Name | Type | Description |
|---|---|---|
| application_type | object | |
| client_uri | string | |
| consent_method | object | |
| grant_types | array | |
| idp_initiated_login | object | |
| initiate_login_uri | string | |
| issuer_mode | object | |
| jwks | object | |
| logo_uri | string | |
| policy_uri | string | |
| post_logout_redirect_uris | array | |
| redirect_uris | array | |
| refresh_token | object | |
| response_types | array | |
| tos_uri | string | |
| wildcard_redirect | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OpenIdConnectApplicationSettingsClient",
"title": "OpenIdConnectApplicationSettingsClient",
"type": "object",
"properties": {
"application_type": {
"$ref": "#/components/schemas/OpenIdConnectApplicationType"
},
"client_uri": {
"type": "string"
},
"consent_method": {
"$ref": "#/components/schemas/OpenIdConnectApplicationConsentMethod"
},
"grant_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OAuthGrantType"
}
},
"idp_initiated_login": {
"$ref": "#/components/schemas/OpenIdConnectApplicationIdpInitiatedLogin"
},
"initiate_login_uri": {
"type": "string"
},
"issuer_mode": {
"$ref": "#/components/schemas/OpenIdConnectApplicationIssuerMode"
},
"jwks": {
"$ref": "#/components/schemas/OpenIdConnectApplicationSettingsClientKeys"
},
"logo_uri": {
"type": "string"
},
"policy_uri": {
"type": "string"
},
"post_logout_redirect_uris": {
"type": "array",
"items": {
"type": "string"
}
},
"redirect_uris": {
"type": "array",
"items": {
"type": "string"
}
},
"refresh_token": {
"$ref": "#/components/schemas/OpenIdConnectApplicationSettingsRefreshToken"
},
"response_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OAuthResponseType"
}
},
"tos_uri": {
"type": "string"
},
"wildcard_redirect": {
"type": "string"
}
},
"x-okta-tags": [
"Application"
]
}