Paradox · Schema

Interviewer

An interviewer available for multiparty scheduling

Artificial IntelligenceCandidate ScreeningChatbotConversational AIHiring AutomationHR TechnologyInterview SchedulingRecruitingSMSTalent Acquisition

Properties

Name Type Description
id string Interviewer identifier
name string Interviewer name
email string Interviewer email address
timezone string Interviewer timezone
View JSON Schema on GitHub

JSON Schema

paradox-interviewer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Interviewer",
  "title": "Interviewer",
  "type": "object",
  "description": "An interviewer available for multiparty scheduling",
  "properties": {
    "id": {
      "type": "string",
      "description": "Interviewer identifier"
    },
    "name": {
      "type": "string",
      "description": "Interviewer name"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Interviewer email address"
    },
    "timezone": {
      "type": "string",
      "description": "Interviewer timezone"
    }
  }
}