{ "$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 }