Google Slides · Schema

Link

A hypertext link.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
url string If set, indicates this is a link to the external web page at this URL.
relativeLink string If set, indicates this is a link to a slide in this presentation, addressed by its position.
pageObjectId string If set, indicates this is a link to the specific page in this presentation with this ID.
slideIndex integer If set, indicates this is a link to the slide at this zero-based index in the presentation.
View JSON Schema on GitHub

JSON Schema

google-slides-link-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Link",
  "type": "object",
  "description": "A hypertext link.",
  "properties": {
    "url": {
      "type": "string",
      "description": "If set, indicates this is a link to the external web page at this URL."
    },
    "relativeLink": {
      "type": "string",
      "description": "If set, indicates this is a link to a slide in this presentation, addressed by its position.\n"
    },
    "pageObjectId": {
      "type": "string",
      "description": "If set, indicates this is a link to the specific page in this presentation with this ID.\n"
    },
    "slideIndex": {
      "type": "integer",
      "description": "If set, indicates this is a link to the slide at this zero-based index in the presentation.\n"
    }
  }
}