Xero · Schema

CashflowResponse

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
startDate string Start date of the report
endDate string End date of the report
cashBalance object
cashflowActivities array Break down of cash and cash equivalents for the period
View JSON Schema on GitHub

JSON Schema

xero-cashflowresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CashflowResponse",
  "title": "CashflowResponse",
  "type": "object",
  "properties": {
    "startDate": {
      "type": "string",
      "description": "Start date of the report",
      "format": "date"
    },
    "endDate": {
      "type": "string",
      "description": "End date of the report",
      "format": "date"
    },
    "cashBalance": {
      "$ref": "#/components/schemas/CashBalance"
    },
    "cashflowActivities": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CashflowActivity"
      },
      "description": "Break down of cash and cash equivalents for the period"
    }
  },
  "additionalProperties": false
}