Google Slides · Schema

PageElement

A visual element rendered on a page.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
objectId string The object ID for this page element.
title string The title of the page element for accessibility.
description string The description of the page element for accessibility.
View JSON Schema on GitHub

JSON Schema

google-slides-page-element-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PageElement",
  "type": "object",
  "description": "A visual element rendered on a page.",
  "properties": {
    "objectId": {
      "type": "string",
      "description": "The object ID for this page element."
    },
    "title": {
      "type": "string",
      "description": "The title of the page element for accessibility."
    },
    "description": {
      "type": "string",
      "description": "The description of the page element for accessibility."
    }
  }
}