Moov · Schema

TransferCancellation

A cancellation request for a pending transfer.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
cancellationID string Unique identifier for the cancellation.
status string Status of the cancellation request.
createdOn string ISO 8601 timestamp when the cancellation was requested.
View JSON Schema on GitHub

JSON Schema

moov-transfercancellation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferCancellation",
  "title": "TransferCancellation",
  "type": "object",
  "description": "A cancellation request for a pending transfer.",
  "properties": {
    "cancellationID": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier for the cancellation."
    },
    "status": {
      "type": "string",
      "description": "Status of the cancellation request.",
      "enum": [
        "pending",
        "confirmed",
        "declined"
      ]
    },
    "createdOn": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the cancellation was requested."
    }
  }
}