Montran · Schema

StatusHistoryEntry

A single entry in the payment status history

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
status string Payment status at this point
timestamp string When the status changed
reasonCode string Reason code if applicable
description string Description of the status change
View JSON Schema on GitHub

JSON Schema

montran-statushistoryentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusHistoryEntry",
  "title": "StatusHistoryEntry",
  "type": "object",
  "description": "A single entry in the payment status history",
  "properties": {
    "status": {
      "type": "string",
      "description": "Payment status at this point"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "When the status changed"
    },
    "reasonCode": {
      "type": "string",
      "description": "Reason code if applicable"
    },
    "description": {
      "type": "string",
      "description": "Description of the status change"
    }
  }
}