Google Docs · Schema

TableCell

The contents and style of a cell in a table.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
startIndex integer
endIndex integer
content array The content of the cell.
suggestedInsertionIds array
suggestedDeletionIds array
suggestedTableCellStyleChanges object
View JSON Schema on GitHub

JSON Schema

google-docs-v1-table-cell-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TableCell",
  "type": "object",
  "description": "The contents and style of a cell in a table.",
  "properties": {
    "startIndex": {
      "type": "integer"
    },
    "endIndex": {
      "type": "integer"
    },
    "content": {
      "type": "array",
      "description": "The content of the cell."
    },
    "suggestedInsertionIds": {
      "type": "array"
    },
    "suggestedDeletionIds": {
      "type": "array"
    },
    "suggestedTableCellStyleChanges": {
      "type": "object"
    }
  }
}