Form definition
{
"title": "Job Applicant Information",
"description": "Please fill out the following fields to apply.",
"fields": {
"fullName": {
"id": "firstName",
"type": "string",
"required": true,
"title": "First Name",
"placeholder": "Please enter your full name"
},
"email": {
"id": "email",
"type": "string",
"required": true,
"title": "Email Address",
"format": "email"
},
"phone": {
"id": "phone",
"type": "string",
"required": true,
"title": "Phone Number"
},
"location": {
"id": "location",
"type": "string",
"title": "Current city"
},
"startDate": {
"id": "start_date",
"type": "date",
"title": "Start Date",
"placeholder": "Choose your ideal start date"
}
}
}