HR Partner · Schema

Reminder

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
title string
body string
due_at string
is_completed boolean
View JSON Schema on GitHub

JSON Schema

hr-partner-reminder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Reminder",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "title": { "type": "string" },
    "body": { "type": "string" },
    "due_at": { "type": "string", "format": "date-time" },
    "is_completed": { "type": "boolean" }
  }
}