Propertyware · Schema

SaveCharge

Charge for Request

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
amount number Amount.
comments string Comments.
date string Post Date.
glAccountID integer GL Account ID.
leaseID integer Lease ID.
refNo string Charge reference No.
View JSON Schema on GitHub

JSON Schema

save-charge.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveCharge",
  "description": "Charge for Request",
  "type": "object",
  "required": [
    "amount",
    "date",
    "glAccountID",
    "leaseID"
  ],
  "properties": {
    "amount": {
      "type": "number",
      "format": "double",
      "description": "Amount."
    },
    "comments": {
      "type": "string",
      "description": "Comments."
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "Post Date."
    },
    "glAccountID": {
      "type": "integer",
      "format": "int64",
      "description": "GL Account ID."
    },
    "leaseID": {
      "type": "integer",
      "format": "int64",
      "description": "Lease ID."
    },
    "refNo": {
      "type": "string",
      "description": "Charge reference No."
    }
  }
}