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 test-taker completed the test session.
21finishDate: Timestamp
22
23# The test-taker's feedback after completing the test session.
24feedback: TestSessionFeedback @deprecated( reason: "Will be replaced with queryable aggregate feedback in the future." )
25
26result: StandardizedTestSessionResult
27
28tasks: [TestSessionTask]!
29
30# The count of tasks.
31taskCount: Int
32
33# Arguments
34# taskId: Unique question ID.
35task(taskId: ID): TestSessionTask
36
37# Test session labels
38labels: [String]!
39
40# Overridden duration of the test.
41customDuration: Float
42
43# Proctoring status of the test session once it's been submitted.
44verificationStatus: VerificationStatus
45
46}

link Required by