Auth0 · Schema

SelfServiceProfileUserAttribute

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string Identifier of this attribute.
description string Description of this attribute.
is_optional boolean Determines if this attribute is required
View JSON Schema on GitHub

JSON Schema

auth0-selfserviceprofileuserattribute-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelfServiceProfileUserAttribute",
  "title": "SelfServiceProfileUserAttribute",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name",
    "description",
    "is_optional"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Identifier of this attribute.",
      "maxLength": 250
    },
    "description": {
      "type": "string",
      "description": "Description of this attribute."
    },
    "is_optional": {
      "type": "boolean",
      "description": "Determines if this attribute is required"
    }
  }
}