HR Partner · Schema

Goal

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
scope string
type string
description string
target_value number
can_exceed_target_value boolean
current_value number
is_active boolean
is_completed boolean
is_archived boolean
assigned_at string
due_at string
employee object
View JSON Schema on GitHub

JSON Schema

hr-partner-goal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Goal",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "scope": { "type": "string" },
    "type": { "type": "string" },
    "description": { "type": "string" },
    "target_value": { "type": "number" },
    "can_exceed_target_value": { "type": "boolean" },
    "current_value": { "type": "number" },
    "is_active": { "type": "boolean" },
    "is_completed": { "type": "boolean" },
    "is_archived": { "type": "boolean" },
    "assigned_at": { "type": "string", "format": "date-time" },
    "due_at": { "type": "string", "format": "date-time" },
    "employee": { "$ref": "hr-partner-employee-ref-schema.json" }
  }
}