Propertyware · Schema

InspectionArea

Inspection Area

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
id integer Unique identifier.
items array List of items in the inspection.
name string Name of the inspection area.
View JSON Schema on GitHub

JSON Schema

inspection-area.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "InspectionArea",
  "description": "Inspection Area",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier."
    },
    "items": {
      "type": "array",
      "description": "List of items in the inspection.",
      "items": {
        "$ref": "#/components/schemas/InspectionItem"
      }
    },
    "name": {
      "type": "string",
      "description": "Name of the inspection area."
    }
  }
}