Scotiabank · Schema

Account

BankingFinancePaymentsCanadaOpen Banking

Properties

Name Type Description
account_id string
account_number string
account_type string
currency string
nickname string
View JSON Schema on GitHub

JSON Schema

scotiabank-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Account",
  "title": "Account",
  "type": "object",
  "properties": {
    "account_id": {
      "type": "string"
    },
    "account_number": {
      "type": "string"
    },
    "account_type": {
      "type": "string"
    },
    "currency": {
      "type": "string"
    },
    "nickname": {
      "type": "string"
    }
  }
}