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