BNY Mellon · Schema
Transaction
A transaction on a BNY Mellon account
Asset ServicingBankingInstitutional BankingPaymentsTreasuryWire TransfersFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| transactionId | string | |
| accountId | string | |
| amount | number | |
| currency | string | |
| debitCredit | string | |
| description | string | |
| referenceNumber | string | |
| valueDate | string | |
| bookingDate | string | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/bank-of-new-york-mellon/json-schema/transaction-schema.json",
"title": "Transaction",
"type": "object",
"description": "A transaction on a BNY Mellon account",
"properties": {
"transactionId": {
"type": "string"
},
"accountId": {
"type": "string"
},
"amount": {
"type": "number",
"format": "double"
},
"currency": {
"type": "string"
},
"debitCredit": {
"type": "string",
"enum": [
"debit",
"credit"
]
},
"description": {
"type": "string"
},
"referenceNumber": {
"type": "string"
},
"valueDate": {
"type": "string",
"format": "date"
},
"bookingDate": {
"type": "string",
"format": "date"
},
"status": {
"type": "string"
}
}
}