Benchling · Schema

ExportItemRequest

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

Properties

Name Type Description
format string The export format for the item. Defaults to pdf if not specified.
id string ID of the item to export
View JSON Schema on GitHub

JSON Schema

ExportItemRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/ExportItemRequest.json",
  "title": "ExportItemRequest",
  "additionalProperties": false,
  "properties": {
    "format": {
      "default": "pdf",
      "description": "The export format for the item. Defaults to pdf if not specified.",
      "enum": [
        "pdf",
        "html"
      ],
      "type": "string"
    },
    "id": {
      "description": "ID of the item to export",
      "example": "etr_1X1AlQPD",
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}