Benchling · Schema

EntryTable

Actual tabular data with rows and columns of text on the note.

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

Properties

Name Type Description
columnLabels array Array of strings, with one item per column. Defaults to null, if the user is using the default, but is set if the user has given a custom name to the column.
name string Name of the table - defaults to e.g. Table1 but can be renamed.
rows array Array of row objects.
View JSON Schema on GitHub

JSON Schema

EntryTable.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/EntryTable.json",
  "title": "EntryTable",
  "description": "Actual tabular data with rows and columns of text on the note.\n",
  "properties": {
    "columnLabels": {
      "description": "Array of strings, with one item per column. Defaults to null, if the user is using the default, but is set if the user has given a custom name to the column.\n",
      "items": {
        "nullable": true,
        "type": "string"
      },
      "type": "array"
    },
    "name": {
      "description": "Name of the table - defaults to e.g. Table1 but can be renamed.\n",
      "type": "string"
    },
    "rows": {
      "description": "Array of row objects.",
      "items": {
        "$ref": "#/components/schemas/EntryTableRow"
      },
      "type": "array"
    }
  },
  "type": "object"
}