Propertyware · Schema

AutoCharge

Auto charge request

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
charges array List of Auto charges.
leaseID integer Lease ID.
View JSON Schema on GitHub

JSON Schema

auto-charge.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AutoCharge",
  "description": "Auto charge request",
  "type": "object",
  "required": [
    "charges",
    "leaseID"
  ],
  "properties": {
    "charges": {
      "type": "array",
      "description": "List of Auto charges.",
      "items": {
        "$ref": "#/components/schemas/SaveAutoCharge"
      }
    },
    "leaseID": {
      "type": "integer",
      "format": "int64",
      "description": "Lease ID."
    }
  }
}