Xero · Schema

BudgetBalance

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
Period string Period the amount applies to (e.g. “2019-08”)
Amount number LineItem Quantity
UnitAmount number Budgeted amount
Notes string Any footnotes associated with this balance
View JSON Schema on GitHub

JSON Schema

xero-budgetbalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BudgetBalance",
  "title": "BudgetBalance",
  "type": "object",
  "properties": {
    "Period": {
      "description": "Period the amount applies to (e.g. \u201c2019-08\u201d)",
      "type": "string",
      "x-is-msdate": true
    },
    "Amount": {
      "description": "LineItem Quantity",
      "type": "number",
      "format": "double",
      "x-is-money": true
    },
    "UnitAmount": {
      "description": "Budgeted amount",
      "type": "number",
      "format": "double",
      "x-is-money": true
    },
    "Notes": {
      "description": "Any footnotes associated with this balance",
      "maxLength": 255,
      "type": "string"
    }
  }
}