Auth0 · Schema

UserAttributeProfileUserId

User ID mapping configuration

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
oidc_mapping object
saml_mapping object
scim_mapping string SCIM mapping for user ID
strategy_overrides object
View JSON Schema on GitHub

JSON Schema

auth0-userattributeprofileuserid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserAttributeProfileUserId",
  "title": "UserAttributeProfileUserId",
  "type": "object",
  "description": "User ID mapping configuration",
  "additionalProperties": false,
  "properties": {
    "oidc_mapping": {
      "$ref": "#/components/schemas/UserAttributeProfileUserIdOidcMappingEnum"
    },
    "saml_mapping": {
      "$ref": "#/components/schemas/UserAttributeProfileUserIdSamlMapping"
    },
    "scim_mapping": {
      "type": "string",
      "description": "SCIM mapping for user ID",
      "minLength": 1,
      "maxLength": 128
    },
    "strategy_overrides": {
      "$ref": "#/components/schemas/UserAttributeProfileStrategyOverridesUserId"
    }
  }
}