Xero · Schema

CourtOrderLine

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
courtOrderTypeID string Xero identifier for payroll court order type
amount number Amount
View JSON Schema on GitHub

JSON Schema

xero-courtorderline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CourtOrderLine",
  "title": "CourtOrderLine",
  "type": "object",
  "properties": {
    "courtOrderTypeID": {
      "description": "Xero identifier for payroll court order type",
      "type": "string",
      "format": "uuid"
    },
    "amount": {
      "description": "Amount",
      "type": "number",
      "format": "double"
    }
  }
}