update_google_document
Modify Google Docs by inserting or updating content at specified positions using a document ID. Streamline document editing with precise control over content changes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | 追加または更新するコンテンツ | |
documentId | Yes | 更新するGoogle DocsドキュメントのID | |
endPosition | No | 更新を終了する位置(オプション) | |
startPosition | No | 更新を開始する位置(オプション) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "追加または更新するコンテンツ",
"type": "string"
},
"documentId": {
"description": "更新するGoogle DocsドキュメントのID",
"type": "string"
},
"endPosition": {
"description": "更新を終了する位置(オプション)",
"type": "number"
},
"startPosition": {
"description": "更新を開始する位置(オプション)",
"type": "number"
}
},
"required": [
"documentId",
"content"
],
"type": "object"
}