Propertyware · Schema

SaveRefund

Refund 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.
destinationAccountID integer Id of the bank account to send the refund from.
glAccountID integer Id of the general ledger account associated with the refund.
leaseID integer Id of the lease associated with the refund.
refNo string Reference number.
toBePrinted boolean Indicates if the check is to be printed.
toPrimaryTenant boolean Indicates if refund is for primary contact only
View JSON Schema on GitHub

JSON Schema

save-refund.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveRefund",
  "description": "Refund for Request",
  "type": "object",
  "required": [
    "amount",
    "date",
    "destinationAccountID",
    "glAccountID",
    "leaseID"
  ],
  "properties": {
    "amount": {
      "type": "number",
      "format": "double",
      "description": "Amount."
    },
    "comments": {
      "type": "string",
      "description": "Comments."
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "Post Date."
    },
    "destinationAccountID": {
      "type": "integer",
      "format": "int64",
      "description": "Id of the bank account to send the refund from."
    },
    "glAccountID": {
      "type": "integer",
      "format": "int64",
      "description": "Id of the general ledger account associated with the refund."
    },
    "leaseID": {
      "type": "integer",
      "format": "int64",
      "description": "Id of the lease associated with the refund."
    },
    "refNo": {
      "type": "string",
      "description": "Reference number."
    },
    "toBePrinted": {
      "type": "boolean",
      "example": false,
      "description": "Indicates if the check is to be printed."
    },
    "toPrimaryTenant": {
      "type": "boolean",
      "example": false,
      "description": "Indicates if refund is for primary contact only"
    }
  }
}