Xero · Schema

OverpaymentResponse

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
overpaymentId string Xero Identifier of overpayment
contact object
total number Total of Invoice tax inclusive (i.e. SubTotal + TotalTax); Not included in summary mode
lineItems array Not included in summary mode
View JSON Schema on GitHub

JSON Schema

xero-overpaymentresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OverpaymentResponse",
  "title": "OverpaymentResponse",
  "type": "object",
  "properties": {
    "overpaymentId": {
      "type": "string",
      "description": "Xero Identifier of overpayment",
      "format": "uuid"
    },
    "contact": {
      "$ref": "#/components/schemas/ContactResponse"
    },
    "total": {
      "type": "number",
      "description": "Total of Invoice tax inclusive (i.e. SubTotal + TotalTax); Not included in summary mode",
      "format": "double",
      "x-is-money": true
    },
    "lineItems": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LineItemResponse"
      },
      "description": "Not included in summary mode"
    }
  },
  "additionalProperties": false
}