Unified.to · Schema

AccountingTransaction

AccountingTransaction schema from Unified.to API

IntegrationsUnified API

Properties

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

JSON Schema

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