{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/ExportItemRequest.json", "title": "ExportItemRequest", "additionalProperties": false, "properties": { "format": { "default": "pdf", "description": "The export format for the item. Defaults to pdf if not specified.", "enum": [ "pdf", "html" ], "type": "string" }, "id": { "description": "ID of the item to export", "example": "etr_1X1AlQPD", "type": "string" } }, "required": [ "id" ], "type": "object" }