Propertyware · Schema

UpdateDocument

Update Document

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
description string Description of the document.
fileName string Name of the document.
publishToOwnerPortal boolean Indicates if the document is published to the owner portal.
publishToTenantPortal boolean Indicates if the document is published to the tenant portal.
View JSON Schema on GitHub

JSON Schema

update-document.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UpdateDocument",
  "description": "Update Document ",
  "type": "object",
  "required": [
    "fileName"
  ],
  "properties": {
    "description": {
      "type": "string",
      "description": "Description of the document."
    },
    "fileName": {
      "type": "string",
      "description": "Name of the document."
    },
    "publishToOwnerPortal": {
      "type": "boolean",
      "example": false,
      "description": "Indicates if the document is published to the owner portal."
    },
    "publishToTenantPortal": {
      "type": "boolean",
      "example": false,
      "description": "Indicates if the document is published to the tenant portal."
    }
  }
}