Apideck · Schema

Balance Sheet Account

A balance sheet account represents the financial position of a company at a specific point in time.

IntegrationsUnified API

Properties

Name Type Description
account_id object
code object
name object
value object
items object
View JSON Schema on GitHub

JSON Schema

apideck-balancesheetaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BalanceSheetAccount",
  "title": "Balance Sheet Account",
  "type": "object",
  "x-apideck-schema-id": "BalanceSheetAccount",
  "x-apideck-weights": {
    "account_id": "critical",
    "name": "high",
    "value": "critical",
    "items": "medium"
  },
  "description": "A balance sheet account represents the financial position of a company at a specific point in time.",
  "additionalProperties": false,
  "properties": {
    "account_id": {
      "$ref": "#/components/schemas/AccountId"
    },
    "code": {
      "$ref": "#/components/schemas/AccountCode"
    },
    "name": {
      "$ref": "#/components/schemas/AccountName"
    },
    "value": {
      "$ref": "#/components/schemas/Amount"
    },
    "items": {
      "$ref": "#/components/schemas/BalanceSheetAccounts"
    }
  }
}