Auth0 · Schema

ConnectionThumbprints

Array of certificate thumbprints (SHA-128/SHA-256/SHA-512 hex hashes) for validating SAML signatures. Used with WS-Federation protocol. Maximum 20 thumbprints. Each thumbprint must be a hexadecimal string.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectionthumbprints-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionThumbprints",
  "title": "ConnectionThumbprints",
  "description": "Array of certificate thumbprints (SHA-128/SHA-256/SHA-512 hex hashes) for validating SAML signatures. Used with WS-Federation protocol. Maximum 20 thumbprints. Each thumbprint must be a hexadecimal string.",
  "type": "array",
  "minItems": 0,
  "maxItems": 20,
  "items": {
    "type": "string",
    "pattern": "^[0-9a-fA-F]+$",
    "minLength": 0,
    "maxLength": 64
  }
}