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# The capability status for ATS integrations.
13atsIntegrationStatus: String
14
15# The capability status for GraphQL API access.
16graphqlStatus: String
17
18# The capability status for webhooks.
19webhooksStatus: String
20
21# If true, API integration is enabled.
22apiIntegration: Boolean @deprecated( reason: "Use graphqlStatus and webhooksStatus instead." )
23
24# If true, SSO is enabled.
25sso: Boolean
26
27# If true, SCIM is enabled.
28scim: Boolean
29
30# If true, interview proctoring is enabled.
31interviewProctoring: 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# If true, the company has access to all promoting frameworks.
44allPromotingFrameworks: Boolean
45
46# If true, the company has access to all AI interviewer domains.
47allAiInterviewerDomains: Boolean
48
49# The capability status for creating custom questions.
50createQuestionStatus: String
51
52# List of question sets that company has access to.
53taskSets: [String]
54
55# List of frameworks that company has access to.
56frameworkIds: [String]
57
58# List of AI interviewer domains that company has access to.
59aiInterviewerDomains: [String]
60
61# The category of LLM model that will be used for AI assistant.
62llmModelCategory: String
63
64# The capability status for executive analytics.
65executiveAnalyticsStatus: String
66
67# The capability status for creating public assessment links.
68createPublicLinkStatus: String
69
70# The capability status for assessment analytics.
71assessmentAnalyticsStatus: String
72
73# The capability status for bulk invitations.
74bulkInvitationsStatus: String
75
76# The capability status for AI authoring (creating questions and assessments via
77# Cosmo).
78aiAuthoringStatus: String
79
80# The capability status for AI discovery (finding questions and assessments via
81# Cosmo).
82aiDiscoveryStatus: String
83
84# The capability status for agentic interviewing.
85agenticInterviewingStatus: String
86
87# The capability status for creating and using conversation questions.
88conversationQuestionStatus: String
89
90}