create_grid_container
Create grid-based containers for organizing position-specific storage like microplates and freezer boxes by defining exact row and column dimensions.
Instructions
Creates a grid-based container with specific positioning
Usage: Create microplates, freezer boxes, or other position-specific storage Dimensions: Define exact grid size (e.g., 8x12 for 96-well plate) Positioning: Items placed at specific coordinates (row, column)
Returns: Created container information with grid specifications
Input Schema
Name | Required | Description | Default |
---|---|---|---|
can_store_containers | No | ||
can_store_samples | No | ||
columns | Yes | ||
description | No | ||
name | Yes | ||
parent_container_id | No | ||
rows | Yes | ||
tags | No |
Input Schema (JSON Schema)
{
"properties": {
"can_store_containers": {
"default": true,
"title": "Can Store Containers",
"type": "boolean"
},
"can_store_samples": {
"default": true,
"title": "Can Store Samples",
"type": "boolean"
},
"columns": {
"title": "Columns",
"type": "integer"
},
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"parent_container_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"default": null,
"title": "Parent Container Id"
},
"rows": {
"title": "Rows",
"type": "integer"
},
"tags": {
"default": null,
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
}
},
"required": [
"name",
"rows",
"columns"
],
"type": "object"
}