Auth0 · Schema

ClientEncryptionKey

Encryption used for WsFed responses with this client.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
pub string Encryption Public RSA Key.
cert string Encryption certificate for public key in X.509 (.CER) format.
subject string Encryption certificate name for this certificate in the format `/CN={domain}`.
View JSON Schema on GitHub

JSON Schema

auth0-clientencryptionkey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientEncryptionKey",
  "title": "ClientEncryptionKey",
  "type": [
    "object",
    "null"
  ],
  "description": "Encryption used for WsFed responses with this client.",
  "additionalProperties": true,
  "properties": {
    "pub": {
      "type": "string",
      "description": "Encryption Public RSA Key."
    },
    "cert": {
      "type": "string",
      "description": "Encryption certificate for public key in X.509 (.CER) format."
    },
    "subject": {
      "type": "string",
      "description": "Encryption certificate name for this certificate in the format `/CN={domain}`."
    }
  }
}