Auth0 · Schema

ConnectionFieldsMapSAML

Maps SAML assertion attributes from the identity provider to Auth0 user profile attributes. Format: { 'auth0_field': 'saml_attribute' } or { 'auth0_field': ['saml_attr1', 'saml_attr2'] } for fallback options. Merged with default mappings for email, name, given_name, family_name, and groups.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectionfieldsmapsaml-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionFieldsMapSAML",
  "title": "ConnectionFieldsMapSAML",
  "description": "Maps SAML assertion attributes from the identity provider to Auth0 user profile attributes. Format: { 'auth0_field': 'saml_attribute' } or { 'auth0_field': ['saml_attr1', 'saml_attr2'] } for fallback options. Merged with default mappings for email, name, given_name, family_name, and groups.",
  "type": "object",
  "maxProperties": 44,
  "additionalProperties": {
    "anyOf": [
      {
        "type": "string",
        "minLength": 0,
        "maxLength": 2048
      },
      {
        "type": "array",
        "items": {
          "type": "string",
          "minLength": 0,
          "maxLength": 2048
        },
        "minItems": 0,
        "maxItems": 4
      }
    ]
  }
}