Thought Industries · Schema

User

A learner user account in the Thought Industries platform.

EducationLearningLMSLXPE-LearningTraining

Properties

Name Type Description
id string Unique user identifier.
email string User email address. Must be unique per tenant.
first_name string User's first name.
last_name string User's last name.
active boolean Whether the user account is active. Deactivated users cannot enroll or access content.
created_at string ISO 8601 timestamp of account creation.
updated_at string ISO 8601 timestamp of last update.
custom_fields object Tenant-specific custom field values.
View JSON Schema on GitHub

JSON Schema

thought-industries-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://thoughtindustries.com/schemas/user",
  "title": "User",
  "description": "A learner user account in the Thought Industries platform.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique user identifier."
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "User email address. Must be unique per tenant."
    },
    "first_name": {
      "type": "string",
      "description": "User's first name."
    },
    "last_name": {
      "type": "string",
      "description": "User's last name."
    },
    "active": {
      "type": "boolean",
      "description": "Whether the user account is active. Deactivated users cannot enroll or access content.",
      "default": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp of account creation."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp of last update."
    },
    "custom_fields": {
      "type": "object",
      "description": "Tenant-specific custom field values.",
      "additionalProperties": true
    }
  },
  "required": ["id", "email"],
  "additionalProperties": false
}