Paradox · Schema

User

A user in the Paradox platform

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
OID string Unique user identifier
name string Full name
email string Email address
phone_number string Phone number
role_id string Assigned role identifier
timezone string User timezone
language_preference string Preferred language code
employee_id string Employee identifier
job_title string Job title
location_ids array Associated location identifiers
campus_permissions array Campus-level permissions
active boolean Whether the user account is active
created_at string Account creation timestamp
updated_at string Last update timestamp
View JSON Schema on GitHub

JSON Schema

paradox-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "description": "A user in the Paradox platform",
  "properties": {
    "OID": {
      "type": "string",
      "description": "Unique user identifier"
    },
    "name": {
      "type": "string",
      "description": "Full name"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address"
    },
    "phone_number": {
      "type": "string",
      "description": "Phone number"
    },
    "role_id": {
      "type": "string",
      "description": "Assigned role identifier"
    },
    "timezone": {
      "type": "string",
      "description": "User timezone"
    },
    "language_preference": {
      "type": "string",
      "description": "Preferred language code"
    },
    "employee_id": {
      "type": "string",
      "description": "Employee identifier"
    },
    "job_title": {
      "type": "string",
      "description": "Job title"
    },
    "location_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Associated location identifiers"
    },
    "campus_permissions": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Campus-level permissions"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the user account is active"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Account creation timestamp"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Last update timestamp"
    }
  }
}