Auth0 · Schema

CimdMappedPrivateKeyJwtCredential

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
credential_type string Type of credential (e.g., public_key)
kid string Key identifier from JWKS or calculated thumbprint
alg string Algorithm (e.g., RS256, RS384, PS256)
View JSON Schema on GitHub

JSON Schema

auth0-cimdmappedprivatekeyjwtcredential-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CimdMappedPrivateKeyJwtCredential",
  "title": "CimdMappedPrivateKeyJwtCredential",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "credential_type",
    "kid",
    "alg"
  ],
  "properties": {
    "credential_type": {
      "type": "string",
      "description": "Type of credential (e.g., public_key)"
    },
    "kid": {
      "type": "string",
      "description": "Key identifier from JWKS or calculated thumbprint"
    },
    "alg": {
      "type": "string",
      "description": "Algorithm (e.g., RS256, RS384, PS256)"
    }
  }
}