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 maximum number of pre-screen sessions that can be active at the same time.
7maxConcurrentPrescreenSessions: Int
8
9# If true, ATS integrations are enabled.
10atsIntegration: Boolean
11
12# If true, API integration is enabled.
13apiIntegration: Boolean
14
15# If true, SSO is enabled.
16sso: Boolean
17
18# If true, SCIM is enabled.
19scim: Boolean
20
21# If true, all proctoring sessions will be recorded.
22proctoringRecordAllSessions: Boolean
23
24# If true, AI assistant is allowed for company test.
25aiAssistant: Boolean
26
27# If true, candidates invited to complete an assessment from the company will
28# require Multi-Factor Authentication.
29candidateMfa: Boolean
30
31# List of question sets that company has access to.
32taskSets: [String]
33
34}