Benchling · Schema

TableUiBlockDataFrameSource

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

Properties

Name Type Description
dataFrameId string `dataFrameId` of an uploaded data frame (see [Create Data Frame endpoint](https://benchling.com/api/v2-beta/reference#/Data%20Frames)). Note: Canvas tables currently support only text-type columns.
type string
View JSON Schema on GitHub

JSON Schema

TableUiBlockDataFrameSource.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/TableUiBlockDataFrameSource.json",
  "title": "TableUiBlockDataFrameSource",
  "properties": {
    "dataFrameId": {
      "description": "`dataFrameId` of an uploaded data frame (see [Create Data Frame endpoint](https://benchling.com/api/v2-beta/reference#/Data%20Frames)). Note: Canvas tables currently support only text-type columns.\n",
      "example": "dset_mfz1f3ai2e8y",
      "nullable": true,
      "type": "string"
    },
    "type": {
      "enum": [
        "DATA_FRAME"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "dataFrameId"
  ],
  "type": "object"
}