Benchling · Schema

BlobPartCreate

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

Properties

Name Type Description
data64 string
md5 string
partNumber integer An integer between 1 to 10,000, inclusive. The part number must be unique per part and indicates the ordering of the part inside the final blob. The part numbers do not need to be consecutive.
View JSON Schema on GitHub

JSON Schema

BlobPartCreate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/BlobPartCreate.json",
  "title": "BlobPartCreate",
  "additionalProperties": false,
  "properties": {
    "data64": {
      "format": "bytes",
      "type": "string"
    },
    "md5": {
      "type": "string"
    },
    "partNumber": {
      "description": "An integer between 1 to 10,000, inclusive. The part number must be unique per part and indicates the ordering of the part inside the final blob. The part numbers do not need to be consecutive.\n",
      "maximum": 10000,
      "minimum": 1,
      "type": "integer"
    }
  },
  "required": [
    "partNumber",
    "data64",
    "md5"
  ],
  "type": "object"
}