Auth0 · Schema

ConnectionSigningKeySAML

Key pair with 'key' and 'cert' properties for signing SAML messages

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
cert string Base64-encoded X.509 certificate in PEM format used by Auth0 to sign SAML requests and logout messages.
key string Private key in PEM format used by Auth0 to sign SAML requests and logout messages.
View JSON Schema on GitHub

JSON Schema

auth0-connectionsigningkeysaml-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionSigningKeySAML",
  "title": "ConnectionSigningKeySAML",
  "description": "Key pair with 'key' and 'cert' properties for signing SAML messages",
  "type": "object",
  "properties": {
    "cert": {
      "description": "Base64-encoded X.509 certificate in PEM format used by Auth0 to sign SAML requests and logout messages.",
      "type": "string",
      "minLength": 1,
      "maxLength": 10240
    },
    "key": {
      "description": "Private key in PEM format used by Auth0 to sign SAML requests and logout messages.",
      "type": "string",
      "minLength": 1,
      "maxLength": 10240
    }
  },
  "additionalProperties": {
    "type": "string",
    "minLength": 0,
    "maxLength": 9216
  },
  "maxProperties": 6
}