Auth0 · Schema

ClientCreateAuthenticationMethodPrivateKeyJWT

Defines `private_key_jwt` client authentication method. If this property is defined, the client is enabled to use the Private Key JWT authentication method.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
credentials object
View JSON Schema on GitHub

JSON Schema

auth0-clientcreateauthenticationmethodprivatekeyjwt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientCreateAuthenticationMethodPrivateKeyJWT",
  "title": "ClientCreateAuthenticationMethodPrivateKeyJWT",
  "type": "object",
  "description": "Defines `private_key_jwt` client authentication method. If this property is defined, the client is enabled to use the Private Key JWT authentication method.",
  "additionalProperties": false,
  "required": [
    "credentials"
  ],
  "properties": {
    "credentials": {
      "$ref": "#/components/schemas/ClientCreateAuthenticationMethodPrivateKeyJWTCredentials"
    }
  }
}