Xero · Schema

EmployeePayTemplate

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
employeeID string Unique identifier for the employee
earningTemplates object
View JSON Schema on GitHub

JSON Schema

xero-employeepaytemplate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmployeePayTemplate",
  "title": "EmployeePayTemplate",
  "type": "object",
  "required": [
    "EarningTemplates"
  ],
  "properties": {
    "employeeID": {
      "description": "Unique identifier for the employee",
      "type": "string",
      "format": "uuid"
    },
    "earningTemplates": {
      "$ref": "#/components/schemas/EarningsTemplates"
    }
  }
}