Benchling · Schema

BlobMultipartCreate

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks

Properties

Name Type Description
mimeType string eg. application/jpeg
name string Name of the blob
type string One of RAW_FILE or VISUALIZATION. If VISUALIZATION, the blob may be displayed as an image preview.
View JSON Schema on GitHub

JSON Schema

BlobMultipartCreate.json Raw ↑
{
  "$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"
}