{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/BlobMultipartCreate.json", "title": "BlobMultipartCreate", "additionalProperties": false, "properties": { "mimeType": { "default": "application/octet-stream", "description": "eg. application/jpeg", "maxLength": 100, "type": "string" }, "name": { "description": "Name of the blob", "maxLength": 1000, "type": "string" }, "type": { "description": "One of RAW_FILE or VISUALIZATION. If VISUALIZATION, the blob may be displayed as an image preview.\n", "enum": [ "RAW_FILE", "VISUALIZATION" ], "type": "string" } }, "required": [ "name", "type" ], "type": "object" }