Google Sheets · Schema

GridCoordinate

A coordinate in a sheet.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
sheetId integer The sheet this coordinate is on.
rowIndex integer The row index of the coordinate.
columnIndex integer The column index of the coordinate.
View JSON Schema on GitHub

JSON Schema

google-sheets-grid-coordinate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GridCoordinate",
  "type": "object",
  "description": "A coordinate in a sheet.",
  "properties": {
    "sheetId": {
      "type": "integer",
      "description": "The sheet this coordinate is on."
    },
    "rowIndex": {
      "type": "integer",
      "description": "The row index of the coordinate."
    },
    "columnIndex": {
      "type": "integer",
      "description": "The column index of the coordinate."
    }
  }
}