Auth0 · Schema

UserAttributeProfileStrategyOverridesMapping

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
oidc_mapping object OIDC mapping override for this strategy
saml_mapping object
scim_mapping string SCIM mapping override for this strategy
View JSON Schema on GitHub

JSON Schema

auth0-userattributeprofilestrategyoverridesmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserAttributeProfileStrategyOverridesMapping",
  "title": "UserAttributeProfileStrategyOverridesMapping",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "oidc_mapping": {
      "$ref": "#/components/schemas/UserAttributeProfileOidcMapping",
      "description": "OIDC mapping override for this strategy"
    },
    "saml_mapping": {
      "$ref": "#/components/schemas/UserAttributeProfileSamlMapping"
    },
    "scim_mapping": {
      "type": "string",
      "description": "SCIM mapping override for this strategy",
      "minLength": 1,
      "maxLength": 128
    }
  }
}