Workday Recruiting · JSON Structure

Recruiting Rest Api Interview Structure

An interview represents a scheduled meeting between a candidate and one or more interviewers as part of the recruiting evaluation process.

Type: object Properties: 10
HCMHuman ResourcesRecruitingSaaSTalent Acquisition

Interview is a JSON Structure definition published by Workday Recruiting, describing 10 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id jobApplication interviewType scheduledDate startTime endTime interviewers location webConferenceUrl status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-recruiting/refs/heads/main/json-structure/recruiting-rest-api-interview-structure.json",
  "name": "Interview",
  "description": "An interview represents a scheduled meeting between a candidate and one or more interviewers as part of the recruiting evaluation process.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workday ID (WID) uniquely identifying the interview",
      "example": "11111111-2222-3333-4444-555555555555"
    },
    "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": "date",
      "description": "Scheduled date of the interview",
      "example": "2026-05-03"
    },
    "startTime": {
      "type": "time",
      "description": "Start time of the interview",
      "example": 52200
    },
    "endTime": {
      "type": "time",
      "description": "End time of the interview",
      "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 assigned as interviewers"
    },
    "location": {
      "type": "string",
      "description": "Interview location or virtual meeting details",
      "example": "San Francisco, CA"
    },
    "webConferenceUrl": {
      "type": "uri",
      "description": "URL for web conference interview",
      "example": "https://example.com/resource"
    },
    "status": {
      "type": "string",
      "enum": [
        "Scheduled",
        "Completed",
        "Canceled",
        "No Show"
      ],
      "description": "Current interview status",
      "example": "Scheduled"
    }
  }
}