Unified.to · Schema

AccountingTransaction

IntegrationsUnified API

Properties

Name Type Description
account_id string
contacts object
created_at string
currency string
customer_message string
id string
lineitems object
memo string
organization_id string
payment_method string
payment_terms string
raw object
reference string
split_account_id string
sub_total_amount number
tax_amount number
total_amount number
type string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-accountingtransaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingTransaction",
  "title": "AccountingTransaction",
  "properties": {
    "account_id": {
      "type": "string"
    },
    "contacts": {
      "$ref": "#/components/schemas/property_AccountingTransaction_contacts"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "currency": {
      "type": "string"
    },
    "customer_message": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "lineitems": {
      "$ref": "#/components/schemas/property_AccountingTransaction_lineitems"
    },
    "memo": {
      "type": "string"
    },
    "organization_id": {
      "type": "string"
    },
    "payment_method": {
      "type": "string"
    },
    "payment_terms": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "reference": {
      "type": "string"
    },
    "split_account_id": {
      "type": "string"
    },
    "sub_total_amount": {
      "type": "number"
    },
    "tax_amount": {
      "type": "number"
    },
    "total_amount": {
      "type": "number"
    },
    "type": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}