Custom field for Request
{ "$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" } } } }