Propertyware · Schema

InspectionItem

InspectionItem

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
comments string Comments.
id integer Unique identifier.
name string Name of the inspection item.
status string Status of the inspection.
View JSON Schema on GitHub

JSON Schema

inspection-item.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "InspectionItem",
  "description": "InspectionItem",
  "type": "object",
  "properties": {
    "comments": {
      "type": "string",
      "description": "Comments."
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier."
    },
    "name": {
      "type": "string",
      "description": "Name of the inspection item."
    },
    "status": {
      "type": "string",
      "description": "Status of the inspection."
    }
  }
}