Xero · Schema

GrossEarningsHistory

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
daysPaid integer Number of days the employee worked in the pay period (0 - 365)
unpaidWeeks integer Number of full weeks the employee didn't work in the pay period (0 - 52)
View JSON Schema on GitHub

JSON Schema

xero-grossearningshistory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GrossEarningsHistory",
  "title": "GrossEarningsHistory",
  "type": "object",
  "properties": {
    "daysPaid": {
      "description": "Number of days the employee worked in the pay period (0 - 365)",
      "type": "integer",
      "format": "int32"
    },
    "unpaidWeeks": {
      "description": "Number of full weeks the employee didn't work in the pay period (0 - 52)",
      "type": "integer",
      "format": "int32"
    }
  }
}