{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/EntryTable.json", "title": "EntryTable", "description": "Actual tabular data with rows and columns of text on the note.\n", "properties": { "columnLabels": { "description": "Array of strings, with one item per column. Defaults to null, if the user is using the default, but is set if the user has given a custom name to the column.\n", "items": { "nullable": true, "type": "string" }, "type": "array" }, "name": { "description": "Name of the table - defaults to e.g. Table1 but can be renamed.\n", "type": "string" }, "rows": { "description": "Array of row objects.", "items": { "$ref": "#/components/schemas/EntryTableRow" }, "type": "array" } }, "type": "object" }