Propertyware · Schema

SaveJournalEntrySplit

Journal Entry Split for Request

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
creditAmount number Credit Amount.
debitAmount number Debit Amount.
glAccountID integer GL Account ID.
View JSON Schema on GitHub

JSON Schema

save-journal-entry-split.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveJournalEntrySplit",
  "description": "Journal Entry Split for Request",
  "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": "GL Account ID."
    }
  }
}