Paradox · Schema

UserUpdate

Request body for updating an existing user

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
name string
email string
phone_number string
role string
timezone string
language_preference string
employee_id string
job_title string
View JSON Schema on GitHub

JSON Schema

paradox-userupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserUpdate",
  "title": "UserUpdate",
  "type": "object",
  "description": "Request body for updating an existing user",
  "properties": {
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "phone_number": {
      "type": "string"
    },
    "role": {
      "type": "string"
    },
    "timezone": {
      "type": "string"
    },
    "language_preference": {
      "type": "string"
    },
    "employee_id": {
      "type": "string"
    },
    "job_title": {
      "type": "string"
    }
  }
}