OBJECT

LiveInterview

A live interview defines a collaboration programming session.

link GraphQL Schema definition

1type LiveInterview {
2
3# Live interview ID.
4id: ID!
5
6# Email of the candidate.
7candidateEmail: String
8
9# Full name of the candidate.
10candidateName: String
11
12# Status of the live interview.
13status: LiveInterviewStatus!
14
15# Proctoring status of the interview. Null when the interview is not proctored.
16proctoringStatus: LiveInterviewProctoringStatus
17
18# Interviewers' feedback about the candidate.
19interviewersFeedback: [InterviewerFeedback]
20
21# Interviewer's feedback about the candidate.
22feedback: LiveInterviewFeedback @deprecated( reason: "Use 'interviewersFeedback'." )
23
24# The date the interview started.
25startDate: Timestamp
26
27# The date the interview finished.
28finishDate: Timestamp
29
30# Direct link to the interview.
31url: String!
32
33# Shortened URL for the interview.
34shortenedUrl: String!
35
36# IP Monitoring. Tracks user's location based on their IP address.
37trackCandidateLocation: Boolean
38
39# Disable description copy. Candidates won't be able to copy description or its
40# part from the UI.
41disableDescriptionCopy: Boolean
42
43# The company that owns this live interview.
44#
45# - Cost complexity: 1
46company: Company!
47
48}

link Required by