{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/TextBoxNotePart.json", "title": "TextBoxNotePart", "allOf": [ { "$ref": "#/components/schemas/BaseNotePart" }, { "properties": { "links": { "description": "Array of links referenced via an @-mention, hyperlink, or the drag-n-dropped preview attached to the note.\n", "items": { "$ref": "#/components/schemas/EntryLink" }, "type": "array" }, "name": { "type": "string" }, "text": { "type": "string" }, "type": { "enum": [ "text_box" ], "type": "string" } }, "type": "object" } ] }