Auth0 · Schema

UsersEnrollment

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string ID of this enrollment.
status object
type string Type of enrollment.
name string Name of enrollment (usually phone number).
identifier string Device identifier (usually phone identifier) of this enrollment.
phone_number string Phone number for this enrollment.
auth_method object
enrolled_at string Start date and time of this enrollment.
last_auth string Last authentication date and time of this enrollment.
View JSON Schema on GitHub

JSON Schema

auth0-usersenrollment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UsersEnrollment",
  "title": "UsersEnrollment",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of this enrollment."
    },
    "status": {
      "$ref": "#/components/schemas/UserEnrollmentStatusEnum"
    },
    "type": {
      "type": "string",
      "description": "Type of enrollment."
    },
    "name": {
      "type": "string",
      "description": "Name of enrollment (usually phone number).",
      "maxLength": 20
    },
    "identifier": {
      "type": "string",
      "description": "Device identifier (usually phone identifier) of this enrollment."
    },
    "phone_number": {
      "type": "string",
      "description": "Phone number for this enrollment."
    },
    "auth_method": {
      "$ref": "#/components/schemas/UserEnrollmentAuthMethodEnum"
    },
    "enrolled_at": {
      "type": "string",
      "description": "Start date and time of this enrollment.",
      "format": "date-time"
    },
    "last_auth": {
      "type": "string",
      "description": "Last authentication date and time of this enrollment.",
      "format": "date-time"
    }
  }
}