Propertyware · Schema

BillPaid

JSON Schema for BillPaid

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
billDate string Bill date.
billNumber integer Bill number.
billSplits array List of bill splits.
id integer Unique identifier.
View JSON Schema on GitHub

JSON Schema

bill-paid.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BillPaid",
  "description": "JSON Schema for BillPaid",
  "type": "object",
  "properties": {
    "billDate": {
      "type": "string",
      "format": "date",
      "description": "Bill date."
    },
    "billNumber": {
      "type": "integer",
      "format": "int32",
      "description": "Bill number."
    },
    "billSplits": {
      "type": "array",
      "description": "List of bill splits.",
      "items": {
        "$ref": "#/components/schemas/SplitPaid"
      }
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier."
    }
  }
}