OBJECT
CompanyFeatures
Features that can be set on a service plan or a company.
link GraphQL Schema definition
1 type CompanyFeatures { 2 3 # The number of permitted user licenses. 4 : Int 5 6 # The maximum number of pre-screen sessions that can be active at the same time. 7 : Int 8 9 # If true, ATS integrations are enabled. 10 : Boolean 11 12 # The capability status for ATS integrations. 13 : String 14 15 # The capability status for GraphQL API access. 16 : String 17 18 # The capability status for webhooks. 19 : String 20 21 # If true, API integration is enabled. 22 : Boolean @deprecated( reason: "Use graphqlStatus and webhooksStatus instead." ) 23 24 # If true, SSO is enabled. 25 : Boolean 26 27 # If true, SCIM is enabled. 28 : Boolean 29 30 # If true, interview proctoring is enabled. 31 : Boolean 32 33 # If true, all proctoring sessions will be recorded. 34 : Boolean 35 36 # If true, AI assistant is allowed for company test. 37 : Boolean 38 39 # If true, candidates invited to complete an assessment from the company will 40 # require Multi-Factor Authentication. 41 : Boolean 42 43 # If true, the company has access to all promoting frameworks. 44 : Boolean 45 46 # If true, the company has access to all AI interviewer domains. 47 : Boolean 48 49 # The capability status for creating custom questions. 50 : String 51 52 # List of question sets that company has access to. 53 : [String] 54 55 # List of frameworks that company has access to. 56 : [String] 57 58 # List of AI interviewer domains that company has access to. 59 : [String] 60 61 # The category of LLM model that will be used for AI assistant. 62 : String 63 64 # The capability status for executive analytics. 65 : String 66 67 # The capability status for creating public assessment links. 68 : String 69 70 # The capability status for assessment analytics. 71 : String 72 73 # The capability status for bulk invitations. 74 : String 75 76 # The capability status for AI authoring (creating questions and assessments via 77 # Cosmo). 78 : String 79 80 # The capability status for AI discovery (finding questions and assessments via 81 # Cosmo). 82 : String 83 84 # The capability status for agentic interviewing. 85 : String 86 87 # The capability status for creating and using conversation questions. 88 : String 89 90 }