OBJECT

CompanyFeatures

Features that can be set on a service plan or a company.

link GraphQL Schema definition

1type CompanyFeatures {
2
3# The number of permitted user licenses.
4numLicenses: Int
5
6# The number of certification credits available on a plan. One credit is used to
7# send one certification request.
8certifyCredits: Int
9
10# The maximum number of pre-screen sessions that can be active at the same time.
11maxConcurrentPrescreenSessions: Int
12
13# If true, users can create/copy a public URL for inviting test-takers to complete
14# a certified test.
15publicCertificationLink: Boolean
16
17# If true, ATS integrations are enabled.
18atsIntegration: Boolean
19
20# If true, API integration is enabled.
21apiIntegration: Boolean
22
23# If true, SSO is enabled.
24sso: Boolean
25
26# If true, SCIM is enabled.
27scim: Boolean
28
29# If true, all proctoring sessions will be recorded.
30proctoringRecordAllSessions: Boolean
31
32# If true, AI assistant is allowed for company test.
33aiAssistant: Boolean
34
35# If true, candidates invited to complete an assessment from the company will
36# require Multi-Factor Authentication.
37candidateMfa: Boolean
38
39# List of certification tests that company has access to.
40certificationTests: [StandardizedTest]
41
42# List of question sets that company has access to.
43taskSets: [String]
44
45}