Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| currency | string | |
| end_at | string | |
| id | string | |
| name | string | |
| raw | object | |
| start_at | string | |
| sub_items | object | |
| total_credit_amount | number | |
| total_debit_amount | number | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountingTrialbalance",
"title": "AccountingTrialbalance",
"properties": {
"created_at": {
"format": "date-time",
"type": "string"
},
"currency": {
"type": "string"
},
"end_at": {
"format": "date-time",
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"start_at": {
"format": "date-time",
"type": "string"
},
"sub_items": {
"$ref": "#/components/schemas/property_AccountingTrialbalance_sub_items"
},
"total_credit_amount": {
"type": "number"
},
"total_debit_amount": {
"type": "number"
},
"updated_at": {
"format": "date-time",
"type": "string"
}
},
"type": "object"
}