{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountingJournal", "title": "AccountingJournal", "properties": { "created_at": { "format": "date-time", "type": "string" }, "currency": { "type": "string" }, "description": { "type": "string" }, "id": { "type": "string" }, "lineitems": { "$ref": "#/components/schemas/property_AccountingJournal_lineitems" }, "organization_id": { "type": "string" }, "posted_at": { "format": "date-time", "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "reference": { "type": "string" }, "source": { "type": "string" }, "tax_amount": { "type": "number" }, "taxrate_id": { "type": "string" }, "updated_at": { "format": "date-time", "type": "string" } }, "type": "object" }