Propertyware · Schema

SaveAdjustment

Adjustment for Request

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
amount number Amount, should be negative.
comments string Comments.
date string Lease Adjustment date.
leaseID integer Id of the lease associated with the Adjustment.
refNo string Reference number.
View JSON Schema on GitHub

JSON Schema

save-adjustment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveAdjustment",
  "description": "Adjustment for Request",
  "type": "object",
  "required": [
    "amount",
    "leaseID"
  ],
  "properties": {
    "amount": {
      "type": "number",
      "format": "double",
      "description": "Amount, should be negative."
    },
    "comments": {
      "type": "string",
      "description": "Comments."
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "Lease Adjustment date."
    },
    "leaseID": {
      "type": "integer",
      "format": "int64",
      "description": "Id of the lease associated with the Adjustment."
    },
    "refNo": {
      "type": "string",
      "description": "Reference number."
    }
  }
}