Propertyware · Schema

SaveConversation

Conversation for Request

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
text string Comment text.
type string Conversation type.
View JSON Schema on GitHub

JSON Schema

save-conversation.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveConversation",
  "description": "Conversation for Request",
  "type": "object",
  "required": [
    "text",
    "type"
  ],
  "properties": {
    "text": {
      "type": "string",
      "description": "Comment text."
    },
    "type": {
      "type": "string",
      "description": "Conversation type.",
      "enum": [
        "MANAGEMENT_TEAM",
        "OWNER",
        "TENANT"
      ]
    }
  }
}