docx-removeContent
Remove specific content blocks from DOCX files by index using JSON schema. Simplify document editing and management with structured, programmatic content removal.
Instructions
Remove a block at index.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"type": "string"
},
"index": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"id",
"index"
],
"type": "object"
}