Workday Recruiting · Schema

InterviewCreate

Request body for scheduling an interview

HCMHuman ResourcesRecruitingSaaSTalent Acquisition

Properties

Name Type Description
jobApplication object A reference to a related Workday resource
interviewType string Type of interview
scheduledDate string Scheduled date of the interview
startTime string Start time
endTime string End time
interviewers array Workers to assign as interviewers
location string Interview location
webConferenceUrl string URL for web conference
View JSON Schema on GitHub

JSON Schema

recruiting-rest-api-interview-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InterviewCreate",
  "description": "Request body for scheduling an interview",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-recruiting/refs/heads/main/json-schema/recruiting-rest-api-interview-create-schema.json",
  "type": "object",
  "properties": {
    "jobApplication": {
      "type": "object",
      "description": "A reference to a related Workday resource",
      "properties": {
        "id": {
          "type": "string",
          "description": "Workday ID (WID) of the referenced resource",
          "example": "11111111-2222-3333-4444-555555555555"
        },
        "descriptor": {
          "type": "string",
          "description": "Display name of the referenced resource",
          "example": "Senior Software Engineer"
        }
      }
    },
    "interviewType": {
      "type": "string",
      "enum": [
        "Phone Screen",
        "Video Interview",
        "In-Person Interview",
        "Panel Interview",
        "Technical Interview"
      ],
      "description": "Type of interview",
      "example": "Phone Screen"
    },
    "scheduledDate": {
      "type": "string",
      "format": "date",
      "description": "Scheduled date of the interview",
      "example": "2026-05-03"
    },
    "startTime": {
      "type": "string",
      "format": "time",
      "description": "Start time",
      "example": 52200
    },
    "endTime": {
      "type": "string",
      "format": "time",
      "description": "End time",
      "example": 52200
    },
    "interviewers": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "A reference to a related Workday resource",
        "properties": {
          "id": {
            "type": "string",
            "description": "Workday ID (WID) of the referenced resource",
            "example": "11111111-2222-3333-4444-555555555555"
          },
          "descriptor": {
            "type": "string",
            "description": "Display name of the referenced resource",
            "example": "Senior Software Engineer"
          }
        }
      },
      "description": "Workers to assign as interviewers"
    },
    "location": {
      "type": "string",
      "description": "Interview location",
      "example": "San Francisco, CA"
    },
    "webConferenceUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL for web conference",
      "example": "https://example.com/resource"
    }
  },
  "required": [
    "jobApplication",
    "scheduledDate",
    "startTime",
    "endTime",
    "interviewers"
  ]
}