Google Slides · Schema

Video

A PageElement kind representing a video.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
url string An URL to a video. The URL is valid as long as the source video exists and sharing settings do not change.
source string The video source.
id string The video source's unique identifier for this video.
View JSON Schema on GitHub

JSON Schema

google-slides-video-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Video",
  "type": "object",
  "description": "A PageElement kind representing a video.\n",
  "properties": {
    "url": {
      "type": "string",
      "description": "An URL to a video. The URL is valid as long as the source video exists and sharing settings do not change.\n"
    },
    "source": {
      "type": "string",
      "description": "The video source."
    },
    "id": {
      "type": "string",
      "description": "The video source's unique identifier for this video.\n"
    }
  }
}