OBJECT

StandardizedTestSession

A session of a standardized test.

link GraphQL Schema definition

1type StandardizedTestSession implements TestSession {
2
3id: ID!
4
5# Associated company test from which this test session was created.
6test: StandardizedTest
7
8status: TestSessionStatus!
9
10testTaker: TestTaker!
11
12maxScore: Int!
13
14# When the test session was created.
15createDate: Timestamp
16
17# When the test-taker actually began the test session.
18startDate: Timestamp
19
20# When the invitation will expire if the session does not begin.
21expirationDate: Timestamp
22
23# When the test-taker completed the test session.
24finishDate: Timestamp
25
26# Unique ID of the public invitation used by the candidate.
27publicInvitationId: ID
28
29# The test-taker's feedback after completing the test session.
30feedback: TestSessionFeedback @deprecated( reason: "Will be replaced with queryable aggregate feedback in the future." )
31
32result: StandardizedTestSessionResult
33
34tasks: [TestSessionTask]!
35
36# The count of tasks.
37taskCount: Int
38
39# Arguments
40# taskId: Unique question ID.
41task(taskId: ID): TestSessionTask
42
43# Test session labels
44labels: [String]!
45
46# Overridden duration of the test.
47customDuration: Float
48
49# Proctoring status of the test session once it's been submitted.
50verificationStatus: VerificationStatus
51
52# [*Internal use only*]
53# Verification notes for the test session.
54verificationNotes: String!
55
56# Indicates whether the system is finished with analyzing test session for
57# suspicious activity.
58integrityReviewFinalized: Boolean!
59
60# Indicates whether the system detected potential suspicious activity for the test
61# session.
62# Will be present only for non-proctored screens if the system was able to analyze
63# the test session successfully.
64integrityReviewSuggested: Boolean
65
66# The new test session after a retake was issued.
67retakeSession: StandardizedTestSession
68
69}