Xero · Schema

TotalOther

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
totalOutstandingAged number Total outstanding invoice value within the period where the invoices are more than 90 days old
totalVoided number Total voided value.
totalCredited number Total credited value.
View JSON Schema on GitHub

JSON Schema

xero-totalother-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TotalOther",
  "title": "TotalOther",
  "type": "object",
  "properties": {
    "totalOutstandingAged": {
      "type": "number",
      "description": "Total outstanding invoice value within the period where the invoices are more than 90 days old",
      "format": "double",
      "x-is-money": true
    },
    "totalVoided": {
      "type": "number",
      "description": "Total voided value.",
      "format": "double",
      "x-is-money": true
    },
    "totalCredited": {
      "type": "number",
      "description": "Total credited value.",
      "format": "double",
      "x-is-money": true
    }
  },
  "additionalProperties": false
}