Benchling · Schema

TableUiBlock

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
View JSON Schema on GitHub

JSON Schema

TableUiBlock.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/TableUiBlock.json",
  "title": "TableUiBlock",
  "allOf": [
    {
      "$ref": "#/components/schemas/InteractiveUiBlock"
    },
    {
      "properties": {
        "name": {
          "description": "Display name for the table block, to be shown in the UI",
          "type": "string"
        },
        "source": {
          "$ref": "#/components/schemas/TableUiBlockSource"
        },
        "type": {
          "enum": [
            "TABLE"
          ],
          "type": "string"
        }
      },
      "required": [
        "type",
        "name",
        "source"
      ]
    }
  ],
  "type": "object"
}