Propertyware · Schema

SaveLeaseJournalEntry

Lease Journal Entry for Request

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

save-lease-journal-entry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveLeaseJournalEntry",
  "description": "Lease Journal Entry for Request",
  "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/SaveJournalEntrySplit"
      }
    },
    "leaseID": {
      "type": "integer",
      "format": "int64",
      "description": "Lease id to apply journal entry."
    },
    "refNo": {
      "type": "string",
      "description": "Journal entry reference number."
    }
  }
}