Propertyware · Schema

LeaseClause

JSON Schema for LeaseClause

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
description string Description of the clause.
id integer Unique identifier.
name string Name of the clause.
View JSON Schema on GitHub

JSON Schema

lease-clause.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LeaseClause",
  "description": "JSON Schema for LeaseClause",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Description of the clause."
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier."
    },
    "name": {
      "type": "string",
      "description": "Name of the clause."
    }
  }
}