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 # If true, API integration is enabled. 13 : Boolean 14 15 # If true, SSO is enabled. 16 : Boolean 17 18 # If true, SCIM is enabled. 19 : Boolean 20 21 # If true, all proctoring sessions will be recorded. 22 : Boolean 23 24 # If true, AI assistant is allowed for company test. 25 : Boolean 26 27 # If true, candidates invited to complete an assessment from the company will 28 # require Multi-Factor Authentication. 29 : Boolean 30 31 # List of question sets that company has access to. 32 : [String] 33 34 # The category of LLM model that will be used for AI assistant. 35 : String 36 37 }