Propertyware · Schema

SaveCustomField

Custom field for Request

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
entityId integer Unique identifier of an entity custom field associated to.
fieldSet array List of Custom fields to update
View JSON Schema on GitHub

JSON Schema

save-custom-field.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveCustomField",
  "description": "Custom field for Request",
  "type": "object",
  "required": [
    "entityId",
    "fieldSet"
  ],
  "properties": {
    "entityId": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier of an entity custom field associated to."
    },
    "fieldSet": {
      "type": "array",
      "description": "List of Custom fields to update",
      "items": {
        "$ref": "#/components/schemas/CustomFieldSet"
      }
    }
  }
}