Google Sheets · Schema
UpdateValuesResponse
The response when updating a range of values in a spreadsheet.
Google WorkspaceProductivitySpreadsheets
Properties
| Name | Type | Description |
|---|---|---|
| spreadsheetId | string | The spreadsheet the updates were applied to. |
| updatedRange | string | The range (in A1 notation) that updates were applied to. |
| updatedRows | integer | The number of rows where at least one cell in the row was updated. |
| updatedColumns | integer | The number of columns where at least one cell in the column was updated. |
| updatedCells | integer | The number of cells updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "UpdateValuesResponse",
"type": "object",
"description": "The response when updating a range of values in a spreadsheet.",
"properties": {
"spreadsheetId": {
"type": "string",
"description": "The spreadsheet the updates were applied to."
},
"updatedRange": {
"type": "string",
"description": "The range (in A1 notation) that updates were applied to."
},
"updatedRows": {
"type": "integer",
"description": "The number of rows where at least one cell in the row was updated."
},
"updatedColumns": {
"type": "integer",
"description": "The number of columns where at least one cell in the column was updated."
},
"updatedCells": {
"type": "integer",
"description": "The number of cells updated."
}
}
}