Google Docs · Schema

Table

A StructuralElement representing a table.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
rows integer Number of rows in the table.
columns integer Number of columns in the table.
tableRows array The contents and style of each row.
suggestedInsertionIds array
suggestedDeletionIds array
View JSON Schema on GitHub

JSON Schema

google-docs-v1-table-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Table",
  "type": "object",
  "description": "A StructuralElement representing a table.",
  "properties": {
    "rows": {
      "type": "integer",
      "description": "Number of rows in the table."
    },
    "columns": {
      "type": "integer",
      "description": "Number of columns in the table."
    },
    "tableRows": {
      "type": "array",
      "description": "The contents and style of each row."
    },
    "suggestedInsertionIds": {
      "type": "array"
    },
    "suggestedDeletionIds": {
      "type": "array"
    }
  }
}