Properties
| Name | Type | Description |
|---|---|---|
| external_data | object | an unstructured json blob representing additional transaction information supplied by the integrator. |
| lines | array | The set of accounting entries associated with this transaction. For example, a debit to a customer account will have a corresponding credit in a general ledger account. |
| memo | string | |
| metadata | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/transaction_data",
"title": "transaction_data",
"properties": {
"external_data": {
"description": "an unstructured json blob representing additional transaction information supplied by the integrator.",
"type": "object"
},
"lines": {
"description": "The set of accounting entries associated with this transaction. For example, a debit to a customer account will have a corresponding credit in a general ledger account.",
"items": {
"$ref": "#/components/schemas/transaction_line"
},
"type": "array"
},
"memo": {
"type": "string"
},
"metadata": {
"type": "object"
}
},
"required": [
"memo",
"lines"
],
"type": "object"
}