Montran · Schema

PaymentReturnResponse

Response for a payment return

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
returnId string Unique return identifier
originalPaymentId string Original payment identifier
status string
processedAt string
View JSON Schema on GitHub

JSON Schema

montran-paymentreturnresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentReturnResponse",
  "title": "PaymentReturnResponse",
  "type": "object",
  "description": "Response for a payment return",
  "properties": {
    "returnId": {
      "type": "string",
      "description": "Unique return identifier"
    },
    "originalPaymentId": {
      "type": "string",
      "description": "Original payment identifier"
    },
    "status": {
      "type": "string",
      "enum": [
        "PROCESSED",
        "REJECTED"
      ]
    },
    "processedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}