Auth0 · Schema
ClientAddonSAML
SAML2 addon indicator (no configuration settings needed for SAML2 addon).
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| mappings | object | |
| audience | string | |
| recipient | string | |
| createUpnClaim | boolean | |
| mapUnknownClaimsAsIs | boolean | |
| passthroughClaimsWithNoMapping | boolean | |
| mapIdentities | boolean | |
| signatureAlgorithm | string | |
| digestAlgorithm | string | |
| issuer | string | |
| destination | string | |
| lifetimeInSeconds | integer | |
| signResponse | boolean | |
| nameIdentifierFormat | string | |
| nameIdentifierProbes | array | |
| authnContextClassRef | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClientAddonSAML",
"title": "ClientAddonSAML",
"type": "object",
"description": "SAML2 addon indicator (no configuration settings needed for SAML2 addon).",
"additionalProperties": true,
"properties": {
"mappings": {
"$ref": "#/components/schemas/ClientAddonSAMLMapping"
},
"audience": {
"type": "string"
},
"recipient": {
"type": "string"
},
"createUpnClaim": {
"type": "boolean"
},
"mapUnknownClaimsAsIs": {
"type": "boolean"
},
"passthroughClaimsWithNoMapping": {
"type": "boolean"
},
"mapIdentities": {
"type": "boolean"
},
"signatureAlgorithm": {
"type": "string"
},
"digestAlgorithm": {
"type": "string"
},
"issuer": {
"type": "string"
},
"destination": {
"type": "string"
},
"lifetimeInSeconds": {
"type": "integer"
},
"signResponse": {
"type": "boolean"
},
"nameIdentifierFormat": {
"type": "string"
},
"nameIdentifierProbes": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
}
},
"authnContextClassRef": {
"type": "string"
}
}
}