Google Sheets · Schema

DimensionRange

A range along a single dimension on a sheet.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
sheetId integer The sheet this span is on.
startIndex integer The start (inclusive) of the span.
endIndex integer The end (exclusive) of the span.
View JSON Schema on GitHub

JSON Schema

google-sheets-dimension-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DimensionRange",
  "type": "object",
  "description": "A range along a single dimension on a sheet.",
  "properties": {
    "sheetId": {
      "type": "integer",
      "description": "The sheet this span is on."
    },
    "startIndex": {
      "type": "integer",
      "description": "The start (inclusive) of the span."
    },
    "endIndex": {
      "type": "integer",
      "description": "The end (exclusive) of the span."
    }
  }
}