Montran · Schema

InternalTransferResponse

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
transferId string
sourceAccountId string
destinationAccountId string
amount number
currency string
status string
processedAt string
View JSON Schema on GitHub

JSON Schema

montran-internaltransferresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InternalTransferResponse",
  "title": "InternalTransferResponse",
  "type": "object",
  "properties": {
    "transferId": {
      "type": "string"
    },
    "sourceAccountId": {
      "type": "string"
    },
    "destinationAccountId": {
      "type": "string"
    },
    "amount": {
      "type": "number",
      "format": "double"
    },
    "currency": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "COMPLETED",
        "FAILED"
      ]
    },
    "processedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}