Google Docs · Schema

ParagraphElement

A ParagraphElement describes content within a paragraph.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

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

JSON Schema

google-docs-v1-paragraph-element-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ParagraphElement",
  "type": "object",
  "description": "A ParagraphElement describes content within a paragraph.",
  "properties": {
    "startIndex": {
      "type": "integer",
      "description": "The zero-based start index of this paragraph element."
    },
    "endIndex": {
      "type": "integer",
      "description": "The zero-based end index of this paragraph element, exclusive."
    }
  }
}