Xero · Schema

ContactTotalDetail

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

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

JSON Schema

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