Benchling · Schema

MarkdownUiBlock

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

Properties

Name Type Description
id string
type string
value string
View JSON Schema on GitHub

JSON Schema

MarkdownUiBlock.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/MarkdownUiBlock.json",
  "title": "MarkdownUiBlock",
  "additionalProperties": false,
  "properties": {
    "id": {
      "example": "user_generated_id",
      "type": "string"
    },
    "type": {
      "enum": [
        "MARKDOWN"
      ],
      "type": "string"
    },
    "value": {
      "example": "# This is a markdown block\n1. with **bold text**.",
      "type": "string"
    }
  },
  "required": [
    "type",
    "value"
  ],
  "type": "object"
}