Unified.to · Schema

AccountingBalancesheet

IntegrationsUnified API

Properties

Name Type Description
assets object
created_at string
currency string
end_at string
equity object
id string
liabilities object
name string
net_assets_amount number
raw object
start_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-accountingbalancesheet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingBalancesheet",
  "title": "AccountingBalancesheet",
  "properties": {
    "assets": {
      "$ref": "#/components/schemas/property_AccountingBalancesheet_assets"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "currency": {
      "type": "string"
    },
    "end_at": {
      "format": "date-time",
      "type": "string"
    },
    "equity": {
      "$ref": "#/components/schemas/property_AccountingBalancesheet_equity"
    },
    "id": {
      "type": "string"
    },
    "liabilities": {
      "$ref": "#/components/schemas/property_AccountingBalancesheet_liabilities"
    },
    "name": {
      "type": "string"
    },
    "net_assets_amount": {
      "type": "number"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "start_at": {
      "format": "date-time",
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}