HR Partner · Schema

Project

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
name string
description string
status string
start_date string
end_date string
budget number
manager string
View JSON Schema on GitHub

JSON Schema

hr-partner-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Project",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "status": { "type": "string" },
    "start_date": { "type": "string", "format": "date" },
    "end_date": { "type": "string", "format": "date" },
    "budget": { "type": "number" },
    "manager": { "type": "string" }
  }
}