Scotiabank · Schema

AccountBalanceResponse

BankingFinancePaymentsCanadaOpen Banking

Properties

Name Type Description
account_id string
date string
opening_balance number
closing_balance number
available_balance number
currency string
View JSON Schema on GitHub

JSON Schema

scotiabank-accountbalanceresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountBalanceResponse",
  "title": "AccountBalanceResponse",
  "type": "object",
  "properties": {
    "account_id": {
      "type": "string"
    },
    "date": {
      "type": "string",
      "format": "date"
    },
    "opening_balance": {
      "type": "number"
    },
    "closing_balance": {
      "type": "number"
    },
    "available_balance": {
      "type": "number"
    },
    "currency": {
      "type": "string"
    }
  }
}