Auth0 · Schema

RoleUser

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
user_id string ID of this user.
picture string URL to a picture for this user.
name string Name of this user.
email string Email address of this user.
View JSON Schema on GitHub

JSON Schema

auth0-roleuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoleUser",
  "title": "RoleUser",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_id": {
      "type": "string",
      "description": "ID of this user."
    },
    "picture": {
      "type": "string",
      "description": "URL to a picture for this user."
    },
    "name": {
      "type": "string",
      "description": "Name of this user."
    },
    "email": {
      "type": "string",
      "description": "Email address of this user.",
      "default": "[email protected]",
      "format": "email"
    }
  }
}