Propertyware · Schema

UpdateLeaseJournalEntry

Update Lease Journal Entry

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
comments string Comments.
date string Journal entry date.
journalEntrySplit array Journal Entry Splits.
leaseID integer Lease id to apply journal entry.
refNo string Journal entry reference number.
View JSON Schema on GitHub

JSON Schema

update-lease-journal-entry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UpdateLeaseJournalEntry",
  "description": "Update Lease Journal Entry",
  "type": "object",
  "required": [
    "comments",
    "date",
    "leaseID"
  ],
  "properties": {
    "comments": {
      "type": "string",
      "description": "Comments."
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "Journal entry date."
    },
    "journalEntrySplit": {
      "type": "array",
      "description": "Journal Entry Splits.",
      "items": {
        "$ref": "#/components/schemas/JournalEntrySplit"
      }
    },
    "leaseID": {
      "type": "integer",
      "format": "int64",
      "description": "Lease id to apply journal entry."
    },
    "refNo": {
      "type": "string",
      "description": "Journal entry reference number."
    }
  }
}