Oracle Fusion Cloud Applications · Schema
Candidate
CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM
Properties
| Name | Type | Description |
|---|---|---|
| CandidateId | integer | Candidate identifier |
| CandidateNumber | string | Candidate number |
| FirstName | string | First name |
| LastName | string | Last name |
| string | Email address | |
| PhoneNumber | string | Phone number |
| CurrentEmployer | string | Current employer |
| CurrentJobTitle | string | Current job title |
| Source | string | Candidate source |
| Status | string | Candidate status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Candidate",
"title": "Candidate",
"type": "object",
"properties": {
"CandidateId": {
"type": "integer",
"description": "Candidate identifier"
},
"CandidateNumber": {
"type": "string",
"description": "Candidate number"
},
"FirstName": {
"type": "string",
"description": "First name"
},
"LastName": {
"type": "string",
"description": "Last name"
},
"Email": {
"type": "string",
"format": "email",
"description": "Email address"
},
"PhoneNumber": {
"type": "string",
"description": "Phone number"
},
"CurrentEmployer": {
"type": "string",
"description": "Current employer"
},
"CurrentJobTitle": {
"type": "string",
"description": "Current job title"
},
"Source": {
"type": "string",
"description": "Candidate source"
},
"Status": {
"type": "string",
"description": "Candidate status",
"enum": [
"New",
"Under Review",
"Interview",
"Offer",
"Hired",
"Rejected",
"Withdrawn"
]
}
}
}