HR Partner · Schema

Expense

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
description string
amount number
currency string
claim_date string
expense_status string
employee object
View JSON Schema on GitHub

JSON Schema

hr-partner-expense-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Expense",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "description": { "type": "string" },
    "amount": { "type": "number" },
    "currency": { "type": "string" },
    "claim_date": { "type": "string", "format": "date" },
    "expense_status": { "type": "string" },
    "employee": { "$ref": "hr-partner-employee-ref-schema.json" }
  }
}