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.
14over
15
16# The test session has been deleted.
17deleted
18
19# The test session has been deleted and the test-taker's PII was removed.
20deletedForPii
21
22# The test session has expired after not being started for a certain amount of
23# time.
24expired
25
26# Candidate has declined the invitation.
27declined
28
29# The test session has been archived.
30archived
31}