Propertyware · Schema

CloseWorkOrder

JSON Schema for CloseWorkOrder

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
category string This classifies the work order into a category.
comments string Comments for closing workorder.
completedDate string Date on which the work was completed.
startDate string Date on which the work was started.
timeCardEntry array List of TimeCard Entries to update
View JSON Schema on GitHub

JSON Schema

close-work-order.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CloseWorkOrder",
  "description": "JSON Schema for CloseWorkOrder",
  "type": "object",
  "required": [
    "timeCardEntry"
  ],
  "properties": {
    "category": {
      "type": "string",
      "description": "This classifies the work order into a category."
    },
    "comments": {
      "type": "string",
      "description": "Comments for closing workorder."
    },
    "completedDate": {
      "type": "string",
      "format": "date",
      "description": "Date on which the work was completed."
    },
    "startDate": {
      "type": "string",
      "format": "date",
      "description": "Date on which the work was started."
    },
    "timeCardEntry": {
      "type": "array",
      "description": "List of TimeCard Entries to update",
      "items": {
        "$ref": "#/components/schemas/TimeCardEntry"
      }
    }
  }
}