Google Sheets · Schema

BatchClearValuesResponse

The response when clearing a range of values in a spreadsheet.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
spreadsheetId string The spreadsheet the updates were applied to.
clearedRanges array The ranges that were cleared, in A1 notation.
View JSON Schema on GitHub

JSON Schema

google-sheets-batch-clear-values-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BatchClearValuesResponse",
  "type": "object",
  "description": "The response when clearing a range of values in a spreadsheet.",
  "properties": {
    "spreadsheetId": {
      "type": "string",
      "description": "The spreadsheet the updates were applied to."
    },
    "clearedRanges": {
      "type": "array",
      "description": "The ranges that were cleared, in A1 notation."
    }
  }
}