Auth0 · Schema

X509CertificateCredential

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
credential_type object
name string Friendly name for a credential.
pem string PEM-formatted X509 certificate. Must be JSON escaped.
View JSON Schema on GitHub

JSON Schema

auth0-x509certificatecredential-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/X509CertificateCredential",
  "title": "X509CertificateCredential",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "credential_type",
    "pem"
  ],
  "properties": {
    "credential_type": {
      "$ref": "#/components/schemas/X509CertificateCredentialTypeEnum"
    },
    "name": {
      "type": "string",
      "description": "Friendly name for a credential.",
      "default": "",
      "maxLength": 128
    },
    "pem": {
      "type": "string",
      "description": "PEM-formatted X509 certificate. Must be JSON escaped.",
      "default": "-----BEGIN CERTIFICATE-----\r\nMIIBIjANBg...\r\n-----END CERTIFICATE-----\r\n",
      "minLength": 1,
      "maxLength": 4096
    }
  }
}