SmartRecruiters · Schema
CandidateCreate
Human ResourcesRecruitingTalent AcquisitionApplicant TrackingHR Technology
Properties
| Name | Type | Description |
|---|---|---|
| firstName | string | |
| lastName | string | |
| string | ||
| phoneNumber | string | |
| location | object | |
| web | object | |
| tags | array | |
| sourceDetails | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CandidateCreate",
"title": "CandidateCreate",
"type": "object",
"required": [
"firstName",
"lastName",
"email"
],
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"email": {
"type": "string",
"format": "email"
},
"phoneNumber": {
"type": "string"
},
"location": {
"type": "object",
"properties": {
"city": {
"type": "string"
},
"country": {
"type": "string"
}
}
},
"web": {
"type": "object",
"properties": {
"linkedIn": {
"type": "string",
"format": "uri"
},
"portfolio": {
"type": "string",
"format": "uri"
}
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"sourceDetails": {
"$ref": "#/components/schemas/SourceDetails"
}
}
}