Google Docs · Schema

TableRow

The contents and style of a row in a table.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
startIndex integer The zero-based start index of this row.
endIndex integer The zero-based end index of this row, exclusive.
tableCells array The contents and style of each cell in this row.
suggestedInsertionIds array
suggestedDeletionIds array
suggestedTableRowStyleChanges object
View JSON Schema on GitHub

JSON Schema

google-docs-v1-table-row-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TableRow",
  "type": "object",
  "description": "The contents and style of a row in a table.",
  "properties": {
    "startIndex": {
      "type": "integer",
      "description": "The zero-based start index of this row."
    },
    "endIndex": {
      "type": "integer",
      "description": "The zero-based end index of this row, exclusive."
    },
    "tableCells": {
      "type": "array",
      "description": "The contents and style of each cell in this row."
    },
    "suggestedInsertionIds": {
      "type": "array"
    },
    "suggestedDeletionIds": {
      "type": "array"
    },
    "suggestedTableRowStyleChanges": {
      "type": "object"
    }
  }
}