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, interview proctoring is enabled.
22interviewProctoring: Boolean
23
24# If true, all proctoring sessions will be recorded.
25proctoringRecordAllSessions: Boolean
26
27# If true, AI assistant is allowed for company test.
28aiAssistant: Boolean
29
30# If true, candidates invited to complete an assessment from the company will
31# require Multi-Factor Authentication.
32candidateMfa: Boolean
33
34# If true, the company has access to all promoting frameworks.
35allPromotingFrameworks: Boolean
36
37# If true, the company has access to all AI interviewer domains.
38allAiInterviewerDomains: Boolean
39
40# The capability status for creating custom questions.
41createQuestionStatus: String
42
43# List of question sets that company has access to.
44taskSets: [String]
45
46# List of frameworks that company has access to.
47frameworkIds: [String]
48
49# List of AI interviewer domains that company has access to.
50aiInterviewerDomains: [String]
51
52# The category of LLM model that will be used for AI assistant.
53llmModelCategory: String
54
55# The capability status for executive analytics.
56executiveAnalyticsStatus: String
57
58# The capability status for creating public assessment links.
59createPublicLinkStatus: String
60
61# The capability status for assessment analytics.
62assessmentAnalyticsStatus: String
63
64# The capability status for bulk invitations.
65bulkInvitationsStatus: String
66
67# The capability status for AI authoring (creating questions and assessments via
68# Cosmo).
69aiAuthoringStatus: String
70
71# The capability status for AI discovery (finding questions and assessments via
72# Cosmo).
73aiDiscoveryStatus: String
74
75}