DateQuestionInput
Input Object
Input for date question.
Fields
id ID! Required
Unique question ID.
question String! Required
Displayed question text.
format String! Required
Use dd/MM/yyyy or a Unicode CLDR locale format. Indeed uses SimpleDateFormat.
Use MM for month (mm causes errors). Use yyyy for year (yy can confuse job seekers).
The format affects ATS data transfer and min/max parsing. Job seekers enter dates in their locale format.
minDate DateTime
Earliest allowed date.
maxDate DateTime
Latest allowed date.
condition ConditionConstraintInput
Show this question only when a previous answer matches. Set the previous question ID and the value that activates this question.
Example: If the applicant answers yes to military service, show a follow-up about branch of service.
id ID! Required
Question ID used in the condition.
values [String!]! Required
Values that satisfy the condition when that question matches.
required Boolean! default:false
If true, the question is required. Unanswered optional questions return "". Default: false.
Example
{ "id": "opaqueId", "question": "xyz789", "format": "xyz789", "minDate": "2023-01-01T09:00:00Z", "maxDate": "2023-01-01T09:00:00Z", "condition": ConditionConstraintInput, "required": false}