Propertyware · Schema

CustomField

Custom field.

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
dataType string Data type of the custom field.
definitionID integer Id of the custom field definition.
fieldName string Name of the custom field.
value string Value of the custom field.
View JSON Schema on GitHub

JSON Schema

custom-field.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CustomField",
  "description": "Custom field.",
  "type": "object",
  "properties": {
    "dataType": {
      "type": "string",
      "description": "Data type of the custom field."
    },
    "definitionID": {
      "type": "integer",
      "format": "int64",
      "description": "Id of the custom field definition."
    },
    "fieldName": {
      "type": "string",
      "description": "Name of the custom field."
    },
    "value": {
      "type": "string",
      "description": "Value of the custom field."
    }
  }
}