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 lifetime of user passwords in days after which they will expire and require
11# to be changed. Setting this number to 0 will disable the expiration.
12passwordExpirationDays: Int
13
14# The maximum number of pre-screen sessions that can be active at the same time.
15maxConcurrentPrescreenSessions: Int
16
17# If true, users can create/copy a public URL for inviting test-takers to complete
18# a certified test.
19publicCertificationLink: Boolean
20
21# If true, ATS integrations are enabled.
22atsIntegration: Boolean
23
24# If true, API integration is enabled.
25apiIntegration: Boolean
26
27# If true, SSO is enabled.
28sso: Boolean
29
30# If true, SCIM is enabled.
31scim: Boolean
32
33# If true, all proctoring sessions will be recorded.
34proctoringRecordAllSessions: Boolean
35
36# If true, AI assistant is allowed for company test.
37aiAssistant: Boolean
38
39# If true, candidates invited to complete an assessment from the company will
40# require Multi-Factor Authentication.
41candidateMfa: Boolean
42
43# List of certification tests that company has access to.
44certificationTests: [StandardizedTest]
45
46# List of question sets that company has access to.
47taskSets: [String]
48
49}