OBJECT
StandardizedTest
A standardized test that is not restricted to a particular company.
link GraphQL Schema definition
1 type StandardizedTest implements Test { 2 3 # Standardized test ID. 4 : ID! 5 6 # The display name of the test. 7 : String! 8 9 # The maximum time allowed to take the test, in milliseconds. 10 : Float! 11 12 # Framework associated with this test, if any. 13 : Framework 14 15 # The type of standardized test. 16 : StandardizedTestType! 17 18 # The internal description of the test. Accessible to CodeSignal admins only. 19 : String! 20 21 # A message shown to users before they begin an assessment created from the test. 22 # Accessible to CodeSignal admins only. 23 : String! 24 25 # A message shown to users after they finish an assessment created from the test. 26 # Accessible to CodeSignal admins only. 27 : String! 28 29 }