{ "$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" }