Google Docs · Schema

TableCellLocation

Location of a single cell within a table.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
rowIndex integer The zero-based row index.
columnIndex integer The zero-based column index.
View JSON Schema on GitHub

JSON Schema

google-docs-v1-table-cell-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TableCellLocation",
  "type": "object",
  "description": "Location of a single cell within a table.",
  "properties": {
    "rowIndex": {
      "type": "integer",
      "description": "The zero-based row index."
    },
    "columnIndex": {
      "type": "integer",
      "description": "The zero-based column index."
    }
  }
}