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 number of certification credits available on a plan. One credit is used to 7 # send one certification request. 8 Int : 9 10 # The maximum number of pre-screen sessions that can be active at the same time. 11 Int : 12 13 # If true, users can create/copy a public URL for inviting test-takers to complete 14 # a certified test. 15 Boolean : 16 17 # If true, ATS integrations are enabled. 18 Boolean : 19 20 # If true, API integration is enabled. 21 Boolean : 22 23 # If true, SSO is enabled. 24 Boolean : 25 26 # If true, SCIM is enabled. 27 Boolean : 28 29 # If true, all proctoring sessions will be recorded. 30 Boolean : 31 32 # If true, AI assistant is allowed for company test. 33 Boolean : 34 35 # If true, candidates invited to complete an assessment from the company will 36 # require Multi-Factor Authentication. 37 Boolean : 38 39 # List of certification tests that company has access to. 40 StandardizedTest] : [ 41 42 # List of question sets that company has access to. 43 String] : [ 44 45 }