Google Docs · Schema

TableRange

A table range represents a reference to a subset of a table.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
rowSpan integer The row span of the table range.
columnSpan integer The column span of the table range.
View JSON Schema on GitHub

JSON Schema

google-docs-v1-table-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TableRange",
  "type": "object",
  "description": "A table range represents a reference to a subset of a table.",
  "properties": {
    "rowSpan": {
      "type": "integer",
      "description": "The row span of the table range."
    },
    "columnSpan": {
      "type": "integer",
      "description": "The column span of the table range."
    }
  }
}