Auth0 · Schema

UserAttributeProfileOidcMapping

OIDC mapping for this attribute

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
mapping string OIDC mapping field
display_name string Display name for the OIDC mapping
View JSON Schema on GitHub

JSON Schema

auth0-userattributeprofileoidcmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserAttributeProfileOidcMapping",
  "title": "UserAttributeProfileOidcMapping",
  "type": "object",
  "description": "OIDC mapping for this attribute",
  "additionalProperties": false,
  "required": [
    "mapping"
  ],
  "properties": {
    "mapping": {
      "type": "string",
      "description": "OIDC mapping field",
      "minLength": 1,
      "maxLength": 50
    },
    "display_name": {
      "type": "string",
      "description": "Display name for the OIDC mapping",
      "minLength": 1,
      "maxLength": 50
    }
  }
}