Propertyware · Schema

JournalEntrySplitResponse

JSON Schema for JournalEntrySplitResponse

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-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "JournalEntrySplitResponse",
  "description": "JSON Schema for JournalEntrySplitResponse",
  "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."
    }
  }
}