Apideck · Schema

Balance Sheet Account Record

A record of a balance sheet account.

IntegrationsUnified API

Properties

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

JSON Schema

apideck-balancesheetaccountrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BalanceSheetAccountRecord",
  "title": "Balance Sheet Account Record",
  "type": "object",
  "x-apideck-schema-id": "BalanceSheetAccountRecord",
  "x-apideck-weights": {
    "account_id": "critical",
    "name": "high",
    "value": "critical",
    "items": "medium"
  },
  "description": "A record of a balance sheet account.",
  "additionalProperties": false,
  "properties": {
    "account_id": {
      "$ref": "#/components/schemas/AccountId"
    },
    "code": {
      "$ref": "#/components/schemas/AccountCode"
    },
    "name": {
      "$ref": "#/components/schemas/AccountName"
    },
    "value": {
      "$ref": "#/components/schemas/Amount"
    }
  }
}