Propertyware · Schema

CustomFieldSet

Custom field set for Request

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
name string Custom Field name
value string Custom Field value
View JSON Schema on GitHub

JSON Schema

custom-field-set.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CustomFieldSet",
  "description": "Custom field set for Request",
  "type": "object",
  "required": [
    "name",
    "value"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Custom Field name"
    },
    "value": {
      "type": "string",
      "description": "Custom Field value"
    }
  }
}