Merge · Schema

ScheduledInterviewRequest

# The ScheduledInterview Object ### Description The `ScheduledInterview` object is used to represent a scheduled interview for a given candidate’s application to a job. An `Application` can have multiple `ScheduledInterview`s depending on the particular hiring process. ### Usage Example Fetch from the `LIST ScheduledInterviews` endpoint and filter by `interviewers` to show all office locations.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
application stringnull The application being interviewed.
job_interview_stage stringnull The stage of the interview.
organizer stringnull The user organizing the interview.
interviewers array Array of `RemoteUser` IDs.
location stringnull The interview's location.
start_at stringnull When the interview was started.
end_at stringnull When the interview was ended.
status object The interview's status.
integration_params objectnull
linked_account_params objectnull
View JSON Schema on GitHub

JSON Schema

merge-scheduledinterviewrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScheduledInterviewRequest",
  "title": "ScheduledInterviewRequest",
  "type": "object",
  "properties": {
    "application": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "description": "The application being interviewed."
    },
    "job_interview_stage": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "description": "The stage of the interview."
    },
    "organizer": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "description": "The user organizing the interview."
    },
    "interviewers": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "description": "Array of `RemoteUser` IDs."
    },
    "location": {
      "type": [
        "string",
        "null"
      ],
      "description": "The interview's location."
    },
    "start_at": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time",
      "description": "When the interview was started."
    },
    "end_at": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time",
      "description": "When the interview was ended."
    },
    "status": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/ScheduledInterviewStatusEnum"
        },
        {
          "type": "null"
        }
      ],
      "description": "The interview's status."
    },
    "integration_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    },
    "linked_account_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    }
  },
  "description": "# The ScheduledInterview Object\n### Description\nThe `ScheduledInterview` object is used to represent a scheduled interview for a given candidate\u2019s application to a job. An `Application` can have multiple `ScheduledInterview`s depending on the particular hiring process.\n### Usage Example\nFetch from the `LIST ScheduledInterviews` endpoint and filter by `interviewers` to show all office locations."
}