Scotiabank · Schema

AccountValidationResponse

BankingFinancePaymentsCanadaOpen Banking

Properties

Name Type Description
is_valid_format boolean Whether the account number format is valid
ownership_match_likelihood string Likelihood of account ownership match
View JSON Schema on GitHub

JSON Schema

scotiabank-accountvalidationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountValidationResponse",
  "title": "AccountValidationResponse",
  "type": "object",
  "properties": {
    "is_valid_format": {
      "type": "boolean",
      "description": "Whether the account number format is valid"
    },
    "ownership_match_likelihood": {
      "type": "string",
      "enum": [
        "HIGH",
        "MEDIUM",
        "LOW",
        "UNKNOWN"
      ],
      "description": "Likelihood of account ownership match"
    }
  }
}