Google Sheets · Schema

AppendValuesResponse

The response when updating a range of values by appending.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
spreadsheetId string The spreadsheet the updates were applied to.
tableRange string The range (in A1 notation) of the table that values are being appended to.
View JSON Schema on GitHub

JSON Schema

google-sheets-append-values-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AppendValuesResponse",
  "type": "object",
  "description": "The response when updating a range of values by appending.",
  "properties": {
    "spreadsheetId": {
      "type": "string",
      "description": "The spreadsheet the updates were applied to."
    },
    "tableRange": {
      "type": "string",
      "description": "The range (in A1 notation) of the table that values are being appended to."
    }
  }
}