Xero · Schema

ReportRow

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
RowType object
Title string
Cells array
View JSON Schema on GitHub

JSON Schema

xero-reportrow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReportRow",
  "title": "ReportRow",
  "type": "object",
  "properties": {
    "RowType": {
      "$ref": "#/components/schemas/RowType"
    },
    "Title": {
      "type": "string"
    },
    "Cells": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ReportCell"
      }
    }
  }
}