create_sheet
Create a new sheet within an existing Google Spreadsheet to organize data, add tabs for different datasets, or structure information in separate sections.
Instructions
新しいシートを作成します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sheetName | Yes | 作成するシート名 | |
spreadsheetId | Yes | スプレッドシートのID |
Input Schema (JSON Schema)
{
"properties": {
"sheetName": {
"description": "作成するシート名",
"type": "string"
},
"spreadsheetId": {
"description": "スプレッドシートのID",
"type": "string"
}
},
"required": [
"spreadsheetId",
"sheetName"
],
"type": "object"
}