Properties
| Name | Type | Description |
|---|---|---|
| account_id | string | |
| description | string | |
| id | string | |
| name | string | |
| object_type | string | |
| total_amount | number | |
| unit_amount | number | |
| unit_quantity | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountingTransactionLineItem",
"title": "AccountingTransactionLineItem",
"properties": {
"account_id": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"object_type": {
"type": "string"
},
"total_amount": {
"type": "number"
},
"unit_amount": {
"type": "number"
},
"unit_quantity": {
"type": "number"
}
},
"type": "object"
}