Benchling · Schema

CheckboxNotePart

One "line" of a checklist

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

JSON Schema

CheckboxNotePart.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/CheckboxNotePart.json",
  "title": "CheckboxNotePart",
  "allOf": [
    {
      "$ref": "#/components/schemas/BaseNotePart"
    },
    {
      "properties": {
        "checked": {
          "description": "Indicates whether the checkbox is checked or not.\n",
          "type": "boolean"
        },
        "links": {
          "description": "Array of links referenced in text via an @-mention, hyperlink, or the drag-n-dropped preview attached to the note.\n",
          "items": {
            "$ref": "#/components/schemas/EntryLink"
          },
          "type": "array"
        },
        "text": {
          "description": "The textual contents of the note.",
          "type": "string"
        },
        "type": {
          "enum": [
            "list_checkbox"
          ],
          "type": "string"
        }
      },
      "type": "object"
    }
  ],
  "description": "One \"line\" of a checklist"
}