Propertyware · Schema

BillPay

JSON Schema for BillPay

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
billSplits array Bill splits list.
id integer Unique identifier.
View JSON Schema on GitHub

JSON Schema

bill-pay.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BillPay",
  "description": "JSON Schema for BillPay",
  "type": "object",
  "properties": {
    "billSplits": {
      "type": "array",
      "description": "Bill splits list.",
      "items": {
        "$ref": "#/components/schemas/SplitPay"
      }
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier."
    }
  }
}