{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/FileUpdate.json", "title": "FileUpdate", "properties": { "customFields": { "allOf": [ { "$ref": "#/components/schemas/CustomFields" } ], "description": "Custom field values to add to the file" }, "errorMessage": { "description": "Error message for the file upload", "type": "string" }, "folderId": { "description": "ID of the folder that the file is moved into", "example": "lib_bf0636", "type": "string" }, "uploadStatus": { "enum": [ "SUCCEEDED", "FAILED_VALIDATION" ], "type": "string" } }, "type": "object" }