Xero · Schema

Files

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
TotalCount integer
Page integer
PerPage integer
Items array
View JSON Schema on GitHub

JSON Schema

xero-files-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Files",
  "title": "Files",
  "type": "object",
  "properties": {
    "TotalCount": {
      "type": "integer",
      "example": 2
    },
    "Page": {
      "type": "integer",
      "example": 1
    },
    "PerPage": {
      "type": "integer",
      "example": 50
    },
    "Items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FileObject"
      }
    }
  }
}