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 lifetime of user passwords in days after which they will expire and require 11 # to be changed. Setting this number to 0 will disable the expiration. 12 Int : 13 14 # The maximum number of pre-screen sessions that can be active at the same time. 15 Int : 16 17 # If true, users can create/copy a public URL for inviting test-takers to complete 18 # a certified test. 19 Boolean : 20 21 # If true, ATS integrations are enabled. 22 Boolean : 23 24 # If true, API integration is enabled. 25 Boolean : 26 27 # If true, SSO is enabled. 28 Boolean : 29 30 # If true, SCIM 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 # List of certification tests that company has access to. 44 StandardizedTest] : [ 45 46 # List of question sets that company has access to. 47 String] : [ 48 49 }