Xero · Schema

CashflowActivity

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
name string Name of the cashflow activity type. It will be either Operating Activities, Investing Activities or Financing Activities
total number Total value of the activity type
cashflowTypes array
View JSON Schema on GitHub

JSON Schema

xero-cashflowactivity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CashflowActivity",
  "title": "CashflowActivity",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the cashflow activity type. It will be either Operating Activities, Investing Activities or Financing Activities"
    },
    "total": {
      "type": "number",
      "description": "Total value of the activity type",
      "format": "double",
      "x-is-money": true
    },
    "cashflowTypes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CashflowType"
      }
    }
  },
  "additionalProperties": false
}