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# If true, users can create/copy a public URL for inviting test-takers to complete
15# a certified test.
16publicCertificationLink: Boolean
17
18# If true, ATS integrations are enabled.
19atsIntegration: Boolean
20
21# If true, API integration is enabled.
22apiIntegration: Boolean
23
24# If true, SSO is enabled.
25sso: Boolean
26
27# If true, SCIM is enabled.
28scim: Boolean
29
30# If true, all proctoring sessions will be recorded.
31proctoringRecordAllSessions: Boolean
32
33# If true, AI assistant is allowed for company test.
34aiAssistant: Boolean
35
36# List of certification tests that company has access to.
37certificationTests: [StandardizedTest]
38
39# List of question sets that company has access to.
40taskSets: [String]
41
42# List of frameworks that company can use to power tech screens.
43techScreenFrameworks: [Framework]
44
45}