Google Docs · Schema

EmbeddedObject

An embedded object such as an image.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
title string The title of the embedded object.
description string The description of the embedded object.
embeddedDrawingProperties object Properties of an embedded drawing. Currently empty.
View JSON Schema on GitHub

JSON Schema

google-docs-v1-embedded-object-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EmbeddedObject",
  "type": "object",
  "description": "An embedded object such as an image.",
  "properties": {
    "title": {
      "type": "string",
      "description": "The title of the embedded object."
    },
    "description": {
      "type": "string",
      "description": "The description of the embedded object."
    },
    "embeddedDrawingProperties": {
      "type": "object",
      "description": "Properties of an embedded drawing. Currently empty."
    }
  }
}