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 # The type of standardized test. 13 StandardizedTestType! : 14 15 # The internal description of the test. Accessible to CodeSignal admins only. 16 String! : 17 18 # A message shown to users before they begin an assessment created from the test. 19 # Accessible to CodeSignal admins only. 20 String! : 21 22 # A message shown to users after they finish an assessment created from the test. 23 # Accessible to CodeSignal admins only. 24 String! : 25 26 }
link Required by
- CertificationRequestA request for a standardized assessment from a company. A certification request is uniquely identified by its ID, or by the (companyId, testId, candidateEmail) triplet.
- CertificationTestsQuery result of certification tests with metadata.
- CompanyFeaturesFeatures that can be set on a service plan or a company.
- Query
- StandardizedTestSessionA session of a standardized test.