Auth0 · Schema

Identity

This must be provided to verify primary social, enterprise and passwordless email identities. Also, is needed to verify secondary identities.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
user_id string user_id of the identity to be verified.
provider object
connection_id string connection_id of the identity.
View JSON Schema on GitHub

JSON Schema

auth0-identity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Identity",
  "title": "Identity",
  "type": "object",
  "description": "This must be provided to verify primary social, enterprise and passwordless email identities. Also, is needed to verify secondary identities.",
  "additionalProperties": false,
  "required": [
    "user_id",
    "provider"
  ],
  "properties": {
    "user_id": {
      "type": "string",
      "description": "user_id of the identity to be verified.",
      "default": "5457edea1b8f22891a000004"
    },
    "provider": {
      "$ref": "#/components/schemas/IdentityProviderEnum"
    },
    "connection_id": {
      "type": "string",
      "description": "connection_id of the identity.",
      "pattern": "^con_[A-Za-z0-9]{16}$"
    }
  }
}