delete_row
Remove a specific row from CSV data by index position while preserving deleted information for potential restoration. Maintains data integrity by tracking changes and providing operation statistics.
Instructions
Delete row at specified index with comprehensive tracking.
Captures deleted data for undo operations. Returns operation result with before/after statistics.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| row_index | Yes | Row index (0-based) to delete |
Input Schema (JSON Schema)
{
"properties": {
"row_index": {
"description": "Row index (0-based) to delete",
"type": "integer"
}
},
"required": [
"row_index"
],
"type": "object"
}