Google Docs
GOOGLEDOCS_UNMERGE_TABLE_CELLS
Tool to unmerge previously merged cells in a table. Use this when you need to revert merged cells in a Google Document table back to their individual cell states.
Remote googledocs
Other tools also called GOOGLEDOCS_UNMERGE_TABLE_CELLS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"tableRange": {
"type": "object",
"title": "Table Range",
"required": [
"tableCellLocation",
"rowSpan",
"columnSpan"
],
"properties": {
"rowSpan": {
"type": "integer",
"title": "Row Span",
"description": "The row span of the table range."
},
"columnSpan": {
"type": "integer",
"title": "Column Span",
"description": "The column span of the table range."
},
"tableCellLocation": {
"type": "object",
"title": "Table Cell Location",
"required": [
"rowIndex",
"columnIndex"
],
"properties": {
"rowIndex": {
"type": "integer",
"title": "Row Index",
"description": "The zero-based row index. For example, the second row in the table has a row index of 1."
},
"columnIndex": {
"type": "integer",
"title": "Column Index",
"description": "The zero-based column index. For example, the second column in the table has a column index of 1."
},
"tableStartLocation": {
"type": "object",
"title": "Location",
"default": null,
"nullable": true,
"properties": {
"index": {
"type": "integer",
"title": "Index",
"default": null,
"nullable": true,
"description": "The zero-based index, in UTF-16 code units."
},
"tabId": {
"type": "string",
"title": "Tab Id",
"default": null,
"nullable": true,
"description": "The tab that the location is in. When omitted, the request is applied to the first tab."
},
"segmentId": {
"type": "string",
"title": "Segment Id",
"default": null,
"nullable": true,
"description": "The ID of the header, footer or footnote the table is in. An empty segment ID signifies the document's body."
}
},
"description": "The location where the table starts in the document.",
"additionalProperties": false
}
},
"description": "The cell location where the table range starts.",
"additionalProperties": false
}
},
"description": "The table range specifying which cells of the table to unmerge.",
"additionalProperties": false
},
"document_id": {
"type": "string",
"title": "Document Id",
"examples": [
"195j9eDD34F53d2g2HMJ-N0kKc_PzA3qdr3c31234567"
],
"description": "The ID of the document to unmerge table cells in."
}
}
}