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 # If true, users can create/copy a public URL for inviting test-takers to complete 15 # a certified test. 16 Boolean : 17 18 # If true, ATS integrations are enabled. 19 Boolean : 20 21 # If true, API integration is enabled. 22 Boolean : 23 24 # If true, SSO is enabled. 25 Boolean : 26 27 # If true, SCIM is enabled. 28 Boolean : 29 30 # If true, workspace questions can be used. 31 Boolean : 32 33 # If true, all proctoring sessions will be recorded. 34 Boolean : 35 36 # List of certification tests that company has access to. 37 StandardizedTest] : [ 38 39 # List of question sets that company has access to. 40 String] : [ 41 42 # List of frameworks that company can use to power pre-screens. 43 Framework] : [ 44 45 # List of frameworks that company can use to power tech screens. 46 Framework] : [ 47 48 }