move_items_to_grid_container_by_row
Systematically moves items to grid containers by filling positions row by row, automatically calculating next available positions for plates, boxes, or other gridded containers.
Instructions
Moves items to grid container, filling positions row by row
Usage: Systematic filling of plates, boxes, or other gridded containers Auto-positioning: Automatically calculates next available positions Dimensions: Auto-detected from container if not provided
Returns: Success status and final positions of moved items
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_ids | Yes | ||
start_column | No | ||
start_row | No | ||
target_container_id | Yes | ||
total_columns | No | ||
total_rows | No |
Input Schema (JSON Schema)
{
"properties": {
"item_ids": {
"items": {
"type": "string"
},
"title": "Item Ids",
"type": "array"
},
"start_column": {
"default": 1,
"title": "Start Column",
"type": "integer"
},
"start_row": {
"default": 1,
"title": "Start Row",
"type": "integer"
},
"target_container_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Target Container Id"
},
"total_columns": {
"default": null,
"title": "Total Columns",
"type": "integer"
},
"total_rows": {
"default": null,
"title": "Total Rows",
"type": "integer"
}
},
"required": [
"target_container_id",
"item_ids"
],
"type": "object"
}