Google Slides · Schema

CreateTableRequest

Creates a new table.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
objectId string A user-supplied object ID.
rows integer Number of rows in the table.
columns integer Number of columns in the table.
View JSON Schema on GitHub

JSON Schema

google-slides-create-table-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateTableRequest",
  "type": "object",
  "description": "Creates a new table.",
  "properties": {
    "objectId": {
      "type": "string",
      "description": "A user-supplied object ID."
    },
    "rows": {
      "type": "integer",
      "description": "Number of rows in the table."
    },
    "columns": {
      "type": "integer",
      "description": "Number of columns in the table."
    }
  }
}