HR Partner · Schema

Applicant

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
first_names string
last_name string
email string
phone string
source string
notes string
View JSON Schema on GitHub

JSON Schema

hr-partner-applicant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Applicant",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "first_names": { "type": "string" },
    "last_name": { "type": "string" },
    "email": { "type": "string", "format": "email" },
    "phone": { "type": "string" },
    "source": { "type": "string" },
    "notes": { "type": "string" }
  }
}