{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CreateCustomFieldValueDto", "type": "object", "description": "Set a value or values for a custom field identified by the field 'Code'. Only one of the fields (IntegerValue / TextValue / FilePathValue etc) will be used,\r\ndepending on the data type of the custom field corresponding to the 'Code' provided", "properties": { "code": { "type": "string" }, "integerValue": { "type": "integer" }, "textValue": { "type": "string" }, "filePathValue": { "type": "string" }, "numericValue": { "type": "number" }, "dateValue": { "type": "string" }, "extendedTextValue": { "type": "string" }, "contactLookupValues": { "type": "array" }, "optionValue": { "type": "string" }, "optionValues": { "type": "array" } } }