Google Docs · Schema

TabProperties

Properties of a tab.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
tabId string Output only. The ID of the tab.
title string The title of the tab.
parentTabId string Output only. The ID of the parent tab. Empty if this is a root-level tab.
index integer The zero-based index of the tab amongst its siblings.
View JSON Schema on GitHub

JSON Schema

google-docs-v1-tab-properties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TabProperties",
  "type": "object",
  "description": "Properties of a tab.",
  "properties": {
    "tabId": {
      "type": "string",
      "description": "Output only. The ID of the tab."
    },
    "title": {
      "type": "string",
      "description": "The title of the tab."
    },
    "parentTabId": {
      "type": "string",
      "description": "Output only. The ID of the parent tab. Empty if this is a root-level tab."
    },
    "index": {
      "type": "integer",
      "description": "The zero-based index of the tab amongst its siblings."
    }
  }
}