Synctera · Schema

transaction_data

FinTechBaaSBankingPaymentsCard IssuingKYC

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
View JSON Schema on GitHub

JSON Schema

synctera-transaction-data-schema.json Raw ↑
{
  "$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"
}