Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| currency | string | |
| description | string | |
| id | string | |
| lineitems | object | |
| organization_id | string | |
| posted_at | string | |
| raw | object | |
| reference | string | |
| source | string | |
| tax_amount | number | |
| taxrate_id | string | |
| updated_at | string |
JSON Schema
{
"$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"
}