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# The test-taker's feedback after completing the test session.
27feedback: TestSessionFeedback @deprecated( reason: "Will be replaced with queryable aggregate feedback in the future." )
28
29result: StandardizedTestSessionResult
30
31tasks: [TestSessionTask]!
32
33# The count of tasks.
34taskCount: Int
35
36# Arguments
37# taskId: Unique question ID.
38task(taskId: ID): TestSessionTask
39
40# Test session labels
41labels: [String]!
42
43# Overridden duration of the test.
44customDuration: Float
45
46# Proctoring status of the test session once it's been submitted.
47verificationStatus: VerificationStatus
48
49# Indicates whether the system is finished with analyzing test session for
50# suspicious activity.
51integrityReviewFinalized: Boolean!
52
53# Indicates whether the system detected potential suspicious activity for the test
54# session.
55# Will be present only for non-proctored screens if the system was able to analyze
56# the test session successfully.
57integrityReviewSuggested: Boolean
58
59# The new test session after a retake was issued.
60retakeSession: StandardizedTestSession
61
62}