{
  "transactions": {
    "booked": [
      {
        "transactionId": "TX123456789",  <-- Unique ID
        "bookingDate": "2024-10-26",      <-- Transaction date
        "valueDate": "2024-10-26",
        "transactionAmount": {        <-- Amount
          "currency": "EUR",
          "amount": "-79.99"
        },
        "creditorName": "Online Retailer", <-- Payee name
        "remittanceInformationUnstructured": "Order #98765"
      },
      {
        "transactionId": "TX987654321",
        "bookingDate": "2024-10-25",
        "valueDate": "2024-10-25",
        "transactionAmount": {
          "currency": "EUR",
          "amount": "1250.00"
        },
        "debtorName": "Employer Inc.",      <-- Payer name
        "remittanceInformationUnstructured": "Monthly Salary", <-- Reference
      }
    ],
    "_links": {                        <-- Navigation links
      "self": { "href": "/v1/accounts/123-abc/transactions" }
    }
  }
}