Google Docs · Schema

StructuralElement

A StructuralElement describes content that provides structure to the document.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
startIndex integer The zero-based start index of this structural element.
endIndex integer The zero-based end index of this structural element, exclusive.
View JSON Schema on GitHub

JSON Schema

google-docs-v1-structural-element-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StructuralElement",
  "type": "object",
  "description": "A StructuralElement describes content that provides structure to the document.",
  "properties": {
    "startIndex": {
      "type": "integer",
      "description": "The zero-based start index of this structural element."
    },
    "endIndex": {
      "type": "integer",
      "description": "The zero-based end index of this structural element, exclusive."
    }
  }
}