ENUM

TestSessionStatus

The status of a test session.

link GraphQL Schema definition

1enum TestSessionStatus {
2
3# The test session has been created but not started.
4pending
5
6# The test-taker has started the test session.
7active
8
9# The test session is in the grace period where they can submit work before the
10# session time is up.
11gracePeriod
12
13# The test session has been completed by the test-taker and the results are being
14# finalized.
15finalizing
16
17# The test session has been completed by the test-taker and the results have been
18# finalized.
19over
20
21# The test session has been deleted.
22deleted
23
24# The test session has been deleted and the test-taker's PII was removed.
25deletedForPii
26
27# The test session has expired after not being started for a certain amount of
28# time.
29expired
30
31# Candidate has declined the invitation.
32declined
33
34# The test session has been archived.
35archived
36}