Propertyware · Schema

JournalEntrySplit

Journal Entry Split

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
creditAmount number Credit amount.
debitAmount number Debit amount.
glAccountID integer Id of the general ledger account associated with this journal entry split.
id integer Unique identifier.
View JSON Schema on GitHub

JSON Schema

journal-entry-split.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "JournalEntrySplit",
  "description": "Journal Entry Split",
  "type": "object",
  "required": [
    "creditAmount",
    "debitAmount",
    "glAccountID"
  ],
  "properties": {
    "creditAmount": {
      "type": "number",
      "format": "double",
      "description": "Credit amount."
    },
    "debitAmount": {
      "type": "number",
      "format": "double",
      "description": "Debit amount."
    },
    "glAccountID": {
      "type": "integer",
      "format": "int64",
      "description": "Id of the general ledger account associated with this journal entry split."
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier."
    }
  }
}