Auth0 · Schema

ConnectionAttributeMapOIDC

Configuration for mapping claims from the identity provider to Auth0 user profile attributes. Allows customizing which IdP claims populate user fields and how they are transformed.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
attributes object
mapping_mode object
userinfo_scope object
View JSON Schema on GitHub

JSON Schema

auth0-connectionattributemapoidc-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionAttributeMapOIDC",
  "title": "ConnectionAttributeMapOIDC",
  "type": "object",
  "description": "Configuration for mapping claims from the identity provider to Auth0 user profile attributes. Allows customizing which IdP claims populate user fields and how they are transformed.",
  "properties": {
    "attributes": {
      "$ref": "#/components/schemas/ConnectionAttributeMapAttributes"
    },
    "mapping_mode": {
      "$ref": "#/components/schemas/ConnectionMappingModeEnumOIDC"
    },
    "userinfo_scope": {
      "$ref": "#/components/schemas/ConnectionAttributeMapUserinfoScope"
    }
  }
}