Auth0 · Schema

CimdMappedClientAuthenticationMethodsPrivateKeyJwt

Private Key JWT authentication configuration

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
credentials array Credentials derived from the JWKS document
View JSON Schema on GitHub

JSON Schema

auth0-cimdmappedclientauthenticationmethodsprivatekeyjwt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CimdMappedClientAuthenticationMethodsPrivateKeyJwt",
  "title": "CimdMappedClientAuthenticationMethodsPrivateKeyJwt",
  "type": "object",
  "description": "Private Key JWT authentication configuration",
  "additionalProperties": true,
  "required": [
    "credentials"
  ],
  "properties": {
    "credentials": {
      "type": "array",
      "description": "Credentials derived from the JWKS document",
      "items": {
        "$ref": "#/components/schemas/CimdMappedPrivateKeyJwtCredential"
      }
    }
  }
}