Stitch · Schema

BankAccount

A bank account linked by the user.

AfricaFinancial DataOpen BankingPaymentsUnified APISouth AfricaNigeria

Properties

Name Type Description
id string Account identifier.
name string Account holder name.
accountNumber string Bank account number.
bankId string Bank identifier code.
availableBalance object
currentBalance object
View JSON Schema on GitHub

JSON Schema

stitch-bankaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BankAccount",
  "title": "BankAccount",
  "type": "object",
  "description": "A bank account linked by the user.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Account identifier."
    },
    "name": {
      "type": "string",
      "description": "Account holder name."
    },
    "accountNumber": {
      "type": "string",
      "description": "Bank account number."
    },
    "bankId": {
      "type": "string",
      "description": "Bank identifier code."
    },
    "availableBalance": {
      "$ref": "#/components/schemas/MoneyAmount"
    },
    "currentBalance": {
      "$ref": "#/components/schemas/MoneyAmount"
    }
  }
}