Auth0 · Schema

UserProfileData

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
email string Email address of this user.
email_verified boolean Whether this email address is verified (true) or unverified (false).
name string Name of this user.
username string Username of this user.
given_name string Given name/first name/forename of this user.
phone_number string Phone number for this user.
phone_verified boolean Whether this phone number is verified (true) or unverified (false).
family_name string Family name/last name/surname of this user.
View JSON Schema on GitHub

JSON Schema

auth0-userprofiledata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserProfileData",
  "title": "UserProfileData",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "email": {
      "type": "string",
      "description": "Email address of this user."
    },
    "email_verified": {
      "type": "boolean",
      "description": "Whether this email address is verified (true) or unverified (false)."
    },
    "name": {
      "type": "string",
      "description": "Name of this user."
    },
    "username": {
      "type": "string",
      "description": "Username of this user.",
      "default": "johndoe"
    },
    "given_name": {
      "type": "string",
      "description": "Given name/first name/forename of this user."
    },
    "phone_number": {
      "type": "string",
      "description": "Phone number for this user."
    },
    "phone_verified": {
      "type": "boolean",
      "description": "Whether this phone number is verified (true) or unverified (false)."
    },
    "family_name": {
      "type": "string",
      "description": "Family name/last name/surname of this user."
    }
  }
}