Scotiabank · Schema

TransactionsListResponse

BankingFinancePaymentsCanadaOpen Banking

Properties

Name Type Description
account_id string
transactions array
total_count integer
page integer
View JSON Schema on GitHub

JSON Schema

scotiabank-transactionslistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionsListResponse",
  "title": "TransactionsListResponse",
  "type": "object",
  "properties": {
    "account_id": {
      "type": "string"
    },
    "transactions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Transaction"
      }
    },
    "total_count": {
      "type": "integer"
    },
    "page": {
      "type": "integer"
    }
  }
}