HR Partner · Schema

Review

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
review_type string
description string
review_date string
reviewer string
score number
review_status string
comments string
employee object
View JSON Schema on GitHub

JSON Schema

hr-partner-review-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Review",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "review_type": { "type": "string" },
    "description": { "type": "string" },
    "review_date": { "type": "string", "format": "date" },
    "reviewer": { "type": "string" },
    "score": { "type": "number" },
    "review_status": { "type": "string" },
    "comments": { "type": "string" },
    "employee": { "$ref": "hr-partner-employee-ref-schema.json" }
  }
}