Propertyware · Schema

SaveBankDeposit

Bank Deposit for Request

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
bankGLAccountID integer Bank general ledger account ID.
dateOpened string Date opened.
description string Description
listOfTxIDs string Comma separated list of Transaction IDs.
View JSON Schema on GitHub

JSON Schema

save-bank-deposit.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveBankDeposit",
  "description": "Bank Deposit for Request",
  "type": "object",
  "required": [
    "bankGLAccountID",
    "dateOpened",
    "listOfTxIDs"
  ],
  "properties": {
    "bankGLAccountID": {
      "type": "integer",
      "format": "int64",
      "description": "Bank general ledger account ID."
    },
    "dateOpened": {
      "type": "string",
      "format": "date",
      "description": "Date opened."
    },
    "description": {
      "type": "string",
      "description": "Description"
    },
    "listOfTxIDs": {
      "type": "string",
      "description": "Comma separated list of Transaction IDs."
    }
  }
}