INPUT_OBJECT

CreateCompanyTestInput

link GraphQL Schema definition

1input CreateCompanyTestInput {
4
2# The internal description of the test.
3internalDescription: String
7
5# A message shown to users before they begin an assessment created from the test.
6introMessage: String!
10
8# A message shown to users after they finish an assessment created from the test.
9outroMessage: String!
13
11# Duration of the test in milliseconds. Should be at least 5 minutes.
12duration: Float!
16
14# The title of the test.
15title: String!
19
17# The candidate-facing title of the evaluation.
18externalTitle: String!
22
20# A list a question slots.
21tasks: [TaskSlotInput!]!
25
23# The ID of the company that owns the test
24companyId: ID
28
26# The subject line shown in the test invitation email.
27emailSubject: String
31
29# The message shown in the test invitation email.
30emailMessage: String
34
32# The subject line shown in the test expiration email.
33expirationEmailSubject: String
37
35# The message shown in the test expiration email.
36expirationEmailMessage: String
40
38# The subject line shown in the test completion email.
39completionEmailSubject: String
43
41# The message shown in the test completion email.
42completionEmailMessage: String
46
44# The templates for the email reminders.
45emailReminderTemplates: [EmailReminderTemplate!]
50
47# Reminders that will be sent to invitees who have not yet completed a test
48# session.
49emailReminders: [EmailReminder!]
53
51# The default expiration time of a test invitation in milliseconds.
52defaultExpiration: Float
56
54# Time zone database name, e.g. America/Los_Angeles.
55timeZone: String
60
57# The CodeSignal user ID of the default sender of test invitations (used when
58# invitations are sent from an applicant tracking system).
59defaultSender: ID
63
61# Test labels
62labels: [String!]
67
64# Automatically assign a label when the candidate scores within a given inclusive
65# range.
66scoreRangeLabels: [ScoreRangeLabelInput!]
71
68# When set to true, the candidates will be prevented from seeing the score in the
69# IDE and active test page.
70hideScoresFromCandidate: Boolean
74
72# Additional fields used by CodeSignal admins only.
73adminFields: AdminFieldsInput
75}

link Required by