Auth0 · Schema

UserAttributeProfileTemplateItem

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string The id of the template.
display_name string The user-friendly name of the template displayed in the UI.
template object
View JSON Schema on GitHub

JSON Schema

auth0-userattributeprofiletemplateitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserAttributeProfileTemplateItem",
  "title": "UserAttributeProfileTemplateItem",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "The id of the template."
    },
    "display_name": {
      "type": "string",
      "description": "The user-friendly name of the template displayed in the UI."
    },
    "template": {
      "$ref": "#/components/schemas/UserAttributeProfileTemplate"
    }
  }
}