Moov · Schema

BankAccountVerification

Status and details of a bank account verification attempt.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
status string Current status of the verification.
exceptionDetails string Error details if the verification failed.
View JSON Schema on GitHub

JSON Schema

moov-bankaccountverification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BankAccountVerification",
  "title": "BankAccountVerification",
  "type": "object",
  "description": "Status and details of a bank account verification attempt.",
  "properties": {
    "status": {
      "type": "string",
      "description": "Current status of the verification.",
      "enum": [
        "pending",
        "completed",
        "failed"
      ]
    },
    "exceptionDetails": {
      "type": "string",
      "description": "Error details if the verification failed."
    }
  }
}