Auth0 · Schema

UserAttributeProfileTemplate

The structure of the template, which can be used as the payload for creating or updating a User Attribute Profile.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name object
user_id object
user_attributes object
View JSON Schema on GitHub

JSON Schema

auth0-userattributeprofiletemplate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserAttributeProfileTemplate",
  "title": "UserAttributeProfileTemplate",
  "type": "object",
  "description": "The structure of the template, which can be used as the payload for creating or updating a User Attribute Profile.",
  "additionalProperties": false,
  "properties": {
    "name": {
      "$ref": "#/components/schemas/UserAttributeProfileName"
    },
    "user_id": {
      "$ref": "#/components/schemas/UserAttributeProfileUserId"
    },
    "user_attributes": {
      "$ref": "#/components/schemas/UserAttributeProfileUserAttributes"
    }
  }
}