{ "$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" }