read_sheet
Read data from specified ranges in Google Sheets to access and analyze spreadsheet information programmatically.
Instructions
スプレッドシートの指定された範囲のデータを読み取ります
Input Schema
Name | Required | Description | Default |
---|---|---|---|
range | Yes | 読み取る範囲(例: 'Sheet1!A1:C10') | |
spreadsheetId | Yes | スプレッドシートのID |
Input Schema (JSON Schema)
{
"properties": {
"range": {
"description": "読み取る範囲(例: 'Sheet1!A1:C10')",
"type": "string"
},
"spreadsheetId": {
"description": "スプレッドシートのID",
"type": "string"
}
},
"required": [
"spreadsheetId",
"range"
],
"type": "object"
}