update_column
Modify or transform data in a specific column using operations like replace, extract, or split. Simplify CSV data editing with precise column-level updates.
Instructions
Update values in a specific column with simple operations like replace, extract, split, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
column | Yes | ||
operation | Yes | ||
pattern | No | ||
replacement | No | ||
session_id | Yes | ||
value | No |
Input Schema (JSON Schema)
{
"properties": {
"column": {
"title": "Column",
"type": "string"
},
"operation": {
"title": "Operation",
"type": "string"
},
"pattern": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Pattern"
},
"replacement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Replacement"
},
"session_id": {
"title": "Session Id",
"type": "string"
},
"value": {
"anyOf": [
{},
{
"type": "null"
}
],
"default": null,
"title": "Value"
}
},
"required": [
"session_id",
"column",
"operation"
],
"type": "object"
}