Moov · Schema

TransferOptions

Available payment rails and options for a proposed transfer.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
sourceOptions array Eligible source payment methods with their available rails.
destinationOptions array Eligible destination payment methods with their available rails.
View JSON Schema on GitHub

JSON Schema

moov-transferoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferOptions",
  "title": "TransferOptions",
  "type": "object",
  "description": "Available payment rails and options for a proposed transfer.",
  "properties": {
    "sourceOptions": {
      "type": "array",
      "description": "Eligible source payment methods with their available rails.",
      "items": {
        "$ref": "#/components/schemas/PaymentMethodOption"
      }
    },
    "destinationOptions": {
      "type": "array",
      "description": "Eligible destination payment methods with their available rails.",
      "items": {
        "$ref": "#/components/schemas/PaymentMethodOption"
      }
    }
  }
}