Xero · Schema
PaymentLine
AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business
Properties
| Name | Type | Description |
|---|---|---|
| paymentLineID | string | Xero identifier for payroll payment line |
| amount | number | The amount of the payment line |
| accountNumber | string | The account number |
| sortCode | string | The account sort code |
| accountName | string | The account name |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentLine",
"title": "PaymentLine",
"type": "object",
"properties": {
"paymentLineID": {
"description": "Xero identifier for payroll payment line",
"type": "string",
"format": "uuid"
},
"amount": {
"description": "The amount of the payment line",
"type": "number",
"format": "double",
"x-is-money": true
},
"accountNumber": {
"description": "The account number",
"type": "string"
},
"sortCode": {
"description": "The account sort code",
"type": "string"
},
"accountName": {
"description": "The account name",
"type": "string"
}
}
}