Propertyware · Schema

SplitPay

JSON Schema for SplitPay

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
amountToPay number Amount to pay.
id integer Unique identifier.
View JSON Schema on GitHub

JSON Schema

split-pay.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SplitPay",
  "description": "JSON Schema for SplitPay",
  "type": "object",
  "properties": {
    "amountToPay": {
      "type": "number",
      "format": "double",
      "description": "Amount to pay."
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier."
    }
  }
}