Xero · Schema

EmployeeOpeningBalance

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
periodEndDate string The opening balance period end date.
daysPaid integer The paid number of days.
unpaidWeeks integer The number of unpaid weeks.
grossEarnings number The gross earnings during the period.
View JSON Schema on GitHub

JSON Schema

xero-employeeopeningbalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmployeeOpeningBalance",
  "title": "EmployeeOpeningBalance",
  "type": "object",
  "properties": {
    "periodEndDate": {
      "description": "The opening balance period end date.",
      "type": "string",
      "format": "date",
      "x-is-date": true,
      "example": "2020-07-01 00:00:00"
    },
    "daysPaid": {
      "description": "The paid number of days.",
      "type": "integer",
      "format": "int32"
    },
    "unpaidWeeks": {
      "description": "The number of unpaid weeks.",
      "type": "integer",
      "format": "int32"
    },
    "grossEarnings": {
      "description": "The gross earnings during the period.",
      "type": "number",
      "format": "double",
      "x-is-money": true
    }
  }
}