{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/FileCreate.json", "title": "FileCreate", "properties": { "customFields": { "allOf": [ { "$ref": "#/components/schemas/CustomFields" } ], "description": "Custom field values to set on the file" }, "filename": { "description": "Filename for the file", "example": "IC50Chart.png", "nullable": false, "type": "string" }, "folderId": { "description": "ID of the folder that contains the file", "example": "lib_bf0636", "nullable": false, "type": "string" }, "name": { "description": "Display name for the file", "example": "IC50 Chart", "nullable": false, "type": "string" } }, "type": "object" }