Benchling · Schema

EntryTableCell

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

Properties

Name Type Description
link object A Link Resource if this cell contained a hyperlink. Otherwise, link will be omitted from the cell object. (Note: inventory and user types are not yet supported.)
text string The textual content of the cell. If the cell was originally a formula, this will be the evaluated version of the formula.
View JSON Schema on GitHub

JSON Schema

EntryTableCell.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/EntryTableCell.json",
  "title": "EntryTableCell",
  "properties": {
    "link": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntryLink"
        }
      ],
      "description": "A Link Resource if this cell contained a hyperlink. Otherwise, link will be omitted from the cell object. (Note: inventory and user types are not yet supported.)\n"
    },
    "text": {
      "description": "The textual content of the cell. If the cell was originally a formula, this will be the evaluated version of the formula.\n",
      "type": "string"
    }
  },
  "type": "object"
}