Xero · Schema

TotalDetail

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
totalPaid number Total paid invoice and cash value within the period.
totalOutstanding number Total outstanding invoice value within the period.
totalCreditedUnApplied number Total unapplied credited value within the period.
View JSON Schema on GitHub

JSON Schema

xero-totaldetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TotalDetail",
  "title": "TotalDetail",
  "type": "object",
  "properties": {
    "totalPaid": {
      "type": "number",
      "description": "Total paid invoice and cash value within the period.",
      "format": "double",
      "x-is-money": true
    },
    "totalOutstanding": {
      "type": "number",
      "description": "Total outstanding invoice value within the period.",
      "format": "double",
      "x-is-money": true
    },
    "totalCreditedUnApplied": {
      "type": "number",
      "description": "Total unapplied credited value within the period.",
      "format": "double",
      "x-is-money": true
    }
  },
  "additionalProperties": false
}