generate_barcode
Generate scannable barcodes and QR codes for inventory items to create physical labels for sample tracking and identification in research workflows.
Instructions
Generates scannable barcodes for inventory items
Usage: Create physical labels for sample tracking and identification Types: 'BARCODE' for standard linear barcodes, 'QR' for QR codes Returns: Binary barcode image data for printing or display
Input Schema
Name | Required | Description | Default |
---|---|---|---|
barcode_type | No | BARCODE | |
global_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"barcode_type": {
"default": "BARCODE",
"title": "Barcode Type",
"type": "string"
},
"global_id": {
"title": "Global Id",
"type": "string"
}
},
"required": [
"global_id"
],
"type": "object"
}