Sage · Schema

BankAccount

AccountingBusiness ManagementCloud SoftwareERPPayrollHR

Properties

Name Type Description
id string
displayed_as string
name string
nominal_code string
balance number
bank_account_type object
currency object
View JSON Schema on GitHub

JSON Schema

sage-bankaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BankAccount",
  "title": "BankAccount",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "displayed_as": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "nominal_code": {
      "type": "string"
    },
    "balance": {
      "type": "number"
    },
    "bank_account_type": {
      "$ref": "#/components/schemas/TypeRef"
    },
    "currency": {
      "$ref": "#/components/schemas/CurrencyRef"
    }
  }
}