The candidate's employment history.
Attribute | Type | Description |
---|---|---|
employerName | string | Name of previous employer. |
currentEmployer | boolean | A boolean to confirm whether this is the candidate's current employer. |
jobTitle | string | Candidate's job title under this employment. |
startDate | string | Start date of employment. Format must be YYYY-MM-DD. |
employmentType | string | Type of employment such as "contract" or "full time". |
department | string | Department candidate worked under. |
permissionToContact | boolean | Whether candidate gave permission to contact their previous employer. |
reasonForLeaving | string | Candidate's reason for leaving employer. |
salary | object(EmploymentSalary) | Candidate's salary at this place of employment. |
verification | object(EmployementVerification) | Supervisor or manager information. |
verifyEmployer | boolean | |
notes | string | Any additional notes on this employer. |
type | string | Type must be "faa" or "default" or "dot". |
"employmentHistory":[
{
"employerName":"SomeEmployer",
"currentEmployer":true,
"jobTitle":"SomeJobTitle",
"startDate":"2008-10-02",
"endDate":"2012-10-25",
"employmentType":"FullTime",
"department":"IT",
"permissionToContact":true,
"reasonForLeaving":"nothing",
"salary":{
"currency":"USD",
"endingSalary":"140,000",
"startingSalary":"100,000"
},
"type":"default",
"verification":{
"supervisorGivenName":"supervisorFirstName",
"supervisorFamilyName":"supervisorLastName",
"supervisorMiddleName":"supervisorMiddleName",
"address":{
"addressLine":"ABC company",
"municipality":"SEATTLE",
"regionCode":"US-WA",
"postalCode":"98001",
"countryCode":"US",
"validFrom":"2008-08-01"
},
"email":"[email protected]",
"phone":"+11234567890",
"fax":"+11234567891"
},
"verifyEmployer":true,
"notes":"nothing"
}
]