Xero · Schema

BudgetLine

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
AccountID string See Accounts
AccountCode string See Accounts
BudgetBalances array
View JSON Schema on GitHub

JSON Schema

xero-budgetline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BudgetLine",
  "title": "BudgetLine",
  "type": "object",
  "externalDocs": {
    "url": "http://developer.xero.com/documentation/api/budgets/"
  },
  "properties": {
    "AccountID": {
      "description": "See Accounts",
      "type": "string",
      "format": "uuid"
    },
    "AccountCode": {
      "description": "See Accounts",
      "type": "string",
      "example": "090"
    },
    "BudgetBalances": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BudgetBalance"
      }
    }
  }
}