Auth0 · Schema

OrganizationMember

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.
roles array
View JSON Schema on GitHub

JSON Schema

auth0-organizationmember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationMember",
  "title": "OrganizationMember",
  "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"
    },
    "roles": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrganizationMemberRole"
      }
    }
  }
}