Scotiabank · Schema

AccountValidationRequest

BankingFinancePaymentsCanadaOpen Banking

Properties

Name Type Description
account_number string
institution_number string
transit_number string
account_holder_name string
View JSON Schema on GitHub

JSON Schema

scotiabank-accountvalidationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountValidationRequest",
  "title": "AccountValidationRequest",
  "type": "object",
  "required": [
    "account_number"
  ],
  "properties": {
    "account_number": {
      "type": "string"
    },
    "institution_number": {
      "type": "string"
    },
    "transit_number": {
      "type": "string"
    },
    "account_holder_name": {
      "type": "string"
    }
  }
}