HR Partner · Schema

Timesheet

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
week_commencing string
total_hours number
timesheet_status string
employee object
View JSON Schema on GitHub

JSON Schema

hr-partner-timesheet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Timesheet",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "week_commencing": { "type": "string", "format": "date" },
    "total_hours": { "type": "number" },
    "timesheet_status": { "type": "string" },
    "employee": { "$ref": "hr-partner-employee-ref-schema.json" }
  }
}