{
  "service": "googleslides",
  "displayName": "Google Slides",
  "categories": [
    "Productivity",
    "Design"
  ],
  "authTypes": [
    "oauth2"
  ],
  "auth": [
    {
      "type": "oauth2",
      "authorizationUrl": "https://accounts.google.com/o/oauth2/v2/auth",
      "tokenUrl": "https://oauth2.googleapis.com/token",
      "scopes": [
        "https://www.googleapis.com/auth/presentations.readonly",
        "https://www.googleapis.com/auth/presentations",
        "https://www.googleapis.com/auth/drive.readonly",
        "https://www.googleapis.com/auth/drive",
        "openid",
        "email",
        "profile"
      ],
      "tokenEndpointAuthMethod": "client_secret_post",
      "authorizationParams": {
        "access_type": "offline",
        "prompt": "consent"
      }
    }
  ],
  "homepageUrl": "https://workspace.google.com/products/slides/",
  "actions": [
    {
      "id": "googleslides.create_presentation",
      "service": "googleslides",
      "name": "create_presentation",
      "description": "Create a blank Google Slides presentation. Optional locale, page size, and presentation ID values are forwarded when provided.",
      "requiredScopes": [
        "https://www.googleapis.com/auth/presentations",
        "https://www.googleapis.com/auth/drive"
      ],
      "providerPermissions": [
        "https://www.googleapis.com/auth/presentations",
        "https://www.googleapis.com/auth/drive"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "description": "The title of the presentation. If omitted, Google uses a default title."
          },
          "locale": {
            "type": "string",
            "description": "The locale of the presentation, such as en-US or ja-JP."
          },
          "pageSize": {
            "type": "object",
            "properties": {
              "width": {
                "type": "object",
                "properties": {
                  "magnitude": {
                    "type": "number",
                    "description": "The magnitude of the dimension."
                  },
                  "unit": {
                    "type": "string",
                    "description": "The unit for the dimension, such as PT or EMU."
                  }
                },
                "additionalProperties": false,
                "required": [
                  "magnitude",
                  "unit"
                ],
                "description": "A dimension value."
              },
              "height": {
                "type": "object",
                "properties": {
                  "magnitude": {
                    "type": "number",
                    "description": "The magnitude of the dimension."
                  },
                  "unit": {
                    "type": "string",
                    "description": "The unit for the dimension, such as PT or EMU."
                  }
                },
                "additionalProperties": false,
                "required": [
                  "magnitude",
                  "unit"
                ],
                "description": "A dimension value."
              }
            },
            "additionalProperties": false,
            "required": [
              "width",
              "height"
            ],
            "description": "The page size of the presentation."
          },
          "presentationId": {
            "type": "string",
            "description": "The explicit presentation ID to create, when supported."
          }
        },
        "additionalProperties": false,
        "description": "Action input."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "presentationId": {
            "type": "string",
            "description": "The ID of the presentation."
          },
          "title": {
            "type": "string",
            "description": "The title of the presentation."
          },
          "locale": {
            "type": "string",
            "description": "The locale of the presentation."
          },
          "revisionId": {
            "type": "string",
            "description": "The revision ID of the presentation."
          },
          "pageSize": {
            "type": "object",
            "properties": {
              "width": {
                "type": "object",
                "properties": {
                  "magnitude": {
                    "type": "number",
                    "description": "The magnitude of the dimension."
                  },
                  "unit": {
                    "type": "string",
                    "description": "The unit for the dimension, such as PT or EMU."
                  }
                },
                "additionalProperties": false,
                "required": [
                  "magnitude",
                  "unit"
                ],
                "description": "A dimension value."
              },
              "height": {
                "type": "object",
                "properties": {
                  "magnitude": {
                    "type": "number",
                    "description": "The magnitude of the dimension."
                  },
                  "unit": {
                    "type": "string",
                    "description": "The unit for the dimension, such as PT or EMU."
                  }
                },
                "additionalProperties": false,
                "required": [
                  "magnitude",
                  "unit"
                ],
                "description": "A dimension value."
              }
            },
            "additionalProperties": false,
            "required": [
              "width",
              "height"
            ],
            "description": "The page size of the presentation."
          },
          "slides": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "objectId": {
                  "type": "string",
                  "description": "The object ID of the page."
                },
                "pageType": {
                  "type": "string",
                  "description": "The type of the page."
                },
                "pageElements": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "additionalProperties": true,
                    "description": "A JSON-like object with arbitrary string keys."
                  },
                  "description": "An array of JSON-like objects."
                },
                "pageProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "slideProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "layoutProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "masterProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "notesProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                }
              },
              "additionalProperties": false,
              "description": "A Google Slides page summary."
            },
            "description": "The slide pages."
          },
          "layouts": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "objectId": {
                  "type": "string",
                  "description": "The object ID of the page."
                },
                "pageType": {
                  "type": "string",
                  "description": "The type of the page."
                },
                "pageElements": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "additionalProperties": true,
                    "description": "A JSON-like object with arbitrary string keys."
                  },
                  "description": "An array of JSON-like objects."
                },
                "pageProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "slideProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "layoutProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "masterProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "notesProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                }
              },
              "additionalProperties": false,
              "description": "A Google Slides page summary."
            },
            "description": "The layout pages."
          },
          "masters": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "objectId": {
                  "type": "string",
                  "description": "The object ID of the page."
                },
                "pageType": {
                  "type": "string",
                  "description": "The type of the page."
                },
                "pageElements": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "additionalProperties": true,
                    "description": "A JSON-like object with arbitrary string keys."
                  },
                  "description": "An array of JSON-like objects."
                },
                "pageProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "slideProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "layoutProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "masterProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "notesProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                }
              },
              "additionalProperties": false,
              "description": "A Google Slides page summary."
            },
            "description": "The master pages."
          }
        },
        "additionalProperties": false,
        "description": "A Google Slides presentation."
      }
    },
    {
      "id": "googleslides.get_page_thumbnail2",
      "service": "googleslides",
      "name": "get_page_thumbnail2",
      "description": "Generate a thumbnail for a Google Slides page. Returns a temporary content URL plus thumbnail dimensions when Google provides them.",
      "requiredScopes": [
        "https://www.googleapis.com/auth/presentations.readonly",
        "https://www.googleapis.com/auth/drive.readonly"
      ],
      "providerPermissions": [
        "https://www.googleapis.com/auth/presentations.readonly",
        "https://www.googleapis.com/auth/drive.readonly"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "presentationId": {
            "type": "string",
            "description": "The presentation ID."
          },
          "pageObjectId": {
            "type": "string",
            "description": "The page object ID."
          },
          "thumbnailProperties": {
            "type": "object",
            "properties": {
              "mimeType": {
                "const": "PNG",
                "type": "string",
                "description": "The mime type for the thumbnail image."
              },
              "thumbnailSize": {
                "type": "string",
                "enum": [
                  "THUMBNAIL_SIZE_UNSPECIFIED",
                  "LARGE",
                  "MEDIUM",
                  "SMALL"
                ],
                "description": "The thumbnail size."
              }
            },
            "additionalProperties": false,
            "description": "Thumbnail generation properties."
          }
        },
        "additionalProperties": false,
        "required": [
          "presentationId",
          "pageObjectId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "width": {
            "type": "integer",
            "description": "The width of the thumbnail in pixels."
          },
          "height": {
            "type": "integer",
            "description": "The height of the thumbnail in pixels."
          },
          "contentUrl": {
            "type": "string",
            "description": "The temporary content URL of the thumbnail."
          }
        },
        "additionalProperties": false,
        "required": [
          "width",
          "height",
          "contentUrl"
        ],
        "description": "A Google Slides page thumbnail."
      }
    },
    {
      "id": "googleslides.presentations_batch_update",
      "service": "googleslides",
      "name": "presentations_batch_update",
      "description": "Apply raw Google Slides batchUpdate requests to a presentation.",
      "requiredScopes": [
        "https://www.googleapis.com/auth/presentations",
        "https://www.googleapis.com/auth/drive"
      ],
      "providerPermissions": [
        "https://www.googleapis.com/auth/presentations",
        "https://www.googleapis.com/auth/drive"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "presentationId": {
            "type": "string",
            "description": "The presentation ID."
          },
          "requests": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true,
              "description": "A JSON-like object with arbitrary string keys."
            },
            "description": "An array of JSON-like objects."
          },
          "writeControl": {
            "type": "object",
            "properties": {
              "requiredRevisionId": {
                "type": "string",
                "description": "The revision ID that must match before applying the update."
              }
            },
            "additionalProperties": false,
            "description": "Write control options for a Slides batch update."
          }
        },
        "additionalProperties": false,
        "required": [
          "presentationId",
          "requests"
        ],
        "description": "Action input."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "presentationId": {
            "type": "string",
            "description": "The presentation ID that was updated."
          },
          "replies": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true,
              "description": "A JSON-like object with arbitrary string keys."
            },
            "description": "An array of JSON-like objects."
          },
          "writeControl": {
            "type": "object",
            "properties": {
              "requiredRevisionId": {
                "type": "string",
                "description": "The revision ID that must match before applying the update."
              }
            },
            "additionalProperties": false,
            "description": "Write control options for a Slides batch update."
          }
        },
        "additionalProperties": false,
        "description": "The result of a Slides batch update."
      }
    },
    {
      "id": "googleslides.presentations_copy_from_template",
      "service": "googleslides",
      "name": "presentations_copy_from_template",
      "description": "Copy an existing Google Slides presentation through Google Drive so the new presentation preserves the original themes, masters, and layouts.",
      "requiredScopes": [
        "https://www.googleapis.com/auth/presentations",
        "https://www.googleapis.com/auth/drive"
      ],
      "providerPermissions": [
        "https://www.googleapis.com/auth/presentations",
        "https://www.googleapis.com/auth/drive"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "templatePresentationId": {
            "type": "string",
            "description": "The presentation ID of the template presentation."
          },
          "newTitle": {
            "type": "string",
            "description": "The title for the copied presentation."
          },
          "parentFolderId": {
            "type": "string",
            "description": "The destination Google Drive folder ID for the copied presentation."
          }
        },
        "additionalProperties": false,
        "required": [
          "templatePresentationId"
        ],
        "description": "Action input."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "presentationId": {
            "type": "string",
            "description": "The ID of the copied presentation."
          },
          "driveFileId": {
            "type": "string",
            "description": "The Drive file ID of the copied presentation."
          },
          "name": {
            "type": "string",
            "description": "The title of the copied presentation."
          },
          "mimeType": {
            "type": "string",
            "description": "The MIME type of the copied file."
          },
          "webViewLink": {
            "type": "string",
            "description": "The browser URL for the copied presentation."
          },
          "parents": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "description": "The parent folders of the copied file."
          }
        },
        "additionalProperties": false,
        "required": [
          "presentationId",
          "driveFileId",
          "name",
          "mimeType"
        ],
        "description": "The copied presentation metadata."
      }
    },
    {
      "id": "googleslides.presentations_get",
      "service": "googleslides",
      "name": "presentations_get",
      "description": "Retrieve a Google Slides presentation by presentation ID, or search Google Drive by exact presentation title first and then fetch the presentation.",
      "requiredScopes": [
        "https://www.googleapis.com/auth/presentations.readonly",
        "https://www.googleapis.com/auth/drive.readonly"
      ],
      "providerPermissions": [
        "https://www.googleapis.com/auth/presentations.readonly",
        "https://www.googleapis.com/auth/drive.readonly"
      ],
      "inputSchema": {
        "oneOf": [
          {
            "type": "object",
            "properties": {
              "presentationId": {
                "type": "string",
                "description": "The presentation ID."
              },
              "presentationName": {
                "type": "string",
                "description": "The presentation title to search for."
              },
              "fields": {
                "type": "string",
                "description": "The partial-response selector for the Slides API request."
              }
            },
            "additionalProperties": false,
            "required": [
              "presentationId"
            ]
          },
          {
            "type": "object",
            "properties": {
              "presentationId": {
                "type": "string",
                "description": "The presentation ID."
              },
              "presentationName": {
                "type": "string",
                "description": "The presentation title to search for."
              },
              "fields": {
                "type": "string",
                "description": "The partial-response selector for the Slides API request."
              }
            },
            "additionalProperties": false,
            "required": [
              "presentationName"
            ]
          }
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "presentationId": {
            "type": "string",
            "description": "The ID of the presentation."
          },
          "title": {
            "type": "string",
            "description": "The title of the presentation."
          },
          "locale": {
            "type": "string",
            "description": "The locale of the presentation."
          },
          "revisionId": {
            "type": "string",
            "description": "The revision ID of the presentation."
          },
          "pageSize": {
            "type": "object",
            "properties": {
              "width": {
                "type": "object",
                "properties": {
                  "magnitude": {
                    "type": "number",
                    "description": "The magnitude of the dimension."
                  },
                  "unit": {
                    "type": "string",
                    "description": "The unit for the dimension, such as PT or EMU."
                  }
                },
                "additionalProperties": false,
                "required": [
                  "magnitude",
                  "unit"
                ],
                "description": "A dimension value."
              },
              "height": {
                "type": "object",
                "properties": {
                  "magnitude": {
                    "type": "number",
                    "description": "The magnitude of the dimension."
                  },
                  "unit": {
                    "type": "string",
                    "description": "The unit for the dimension, such as PT or EMU."
                  }
                },
                "additionalProperties": false,
                "required": [
                  "magnitude",
                  "unit"
                ],
                "description": "A dimension value."
              }
            },
            "additionalProperties": false,
            "required": [
              "width",
              "height"
            ],
            "description": "The page size of the presentation."
          },
          "slides": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "objectId": {
                  "type": "string",
                  "description": "The object ID of the page."
                },
                "pageType": {
                  "type": "string",
                  "description": "The type of the page."
                },
                "pageElements": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "additionalProperties": true,
                    "description": "A JSON-like object with arbitrary string keys."
                  },
                  "description": "An array of JSON-like objects."
                },
                "pageProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "slideProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "layoutProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "masterProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "notesProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                }
              },
              "additionalProperties": false,
              "description": "A Google Slides page summary."
            },
            "description": "The slide pages."
          },
          "layouts": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "objectId": {
                  "type": "string",
                  "description": "The object ID of the page."
                },
                "pageType": {
                  "type": "string",
                  "description": "The type of the page."
                },
                "pageElements": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "additionalProperties": true,
                    "description": "A JSON-like object with arbitrary string keys."
                  },
                  "description": "An array of JSON-like objects."
                },
                "pageProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "slideProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "layoutProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "masterProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "notesProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                }
              },
              "additionalProperties": false,
              "description": "A Google Slides page summary."
            },
            "description": "The layout pages."
          },
          "masters": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "objectId": {
                  "type": "string",
                  "description": "The object ID of the page."
                },
                "pageType": {
                  "type": "string",
                  "description": "The type of the page."
                },
                "pageElements": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "additionalProperties": true,
                    "description": "A JSON-like object with arbitrary string keys."
                  },
                  "description": "An array of JSON-like objects."
                },
                "pageProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "slideProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "layoutProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "masterProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                },
                "notesProperties": {
                  "type": "object",
                  "additionalProperties": true,
                  "description": "A JSON-like object with arbitrary string keys."
                }
              },
              "additionalProperties": false,
              "description": "A Google Slides page summary."
            },
            "description": "The master pages."
          }
        },
        "additionalProperties": false,
        "description": "A Google Slides presentation."
      }
    },
    {
      "id": "googleslides.presentations_pages_get",
      "service": "googleslides",
      "name": "presentations_pages_get",
      "description": "Retrieve a specific page from a Google Slides presentation, including its page elements and page-specific properties.",
      "requiredScopes": [
        "https://www.googleapis.com/auth/presentations.readonly",
        "https://www.googleapis.com/auth/drive.readonly"
      ],
      "providerPermissions": [
        "https://www.googleapis.com/auth/presentations.readonly",
        "https://www.googleapis.com/auth/drive.readonly"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "presentationId": {
            "type": "string",
            "description": "The presentation ID."
          },
          "pageObjectId": {
            "type": "string",
            "description": "The page object ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "presentationId",
          "pageObjectId"
        ],
        "description": "A presentation page reference."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "objectId": {
            "type": "string",
            "description": "The object ID of the page."
          },
          "pageType": {
            "type": "string",
            "description": "The type of the page."
          },
          "pageElements": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true,
              "description": "A JSON-like object with arbitrary string keys."
            },
            "description": "An array of JSON-like objects."
          },
          "pageProperties": {
            "type": "object",
            "additionalProperties": true,
            "description": "A JSON-like object with arbitrary string keys."
          },
          "slideProperties": {
            "type": "object",
            "additionalProperties": true,
            "description": "A JSON-like object with arbitrary string keys."
          },
          "layoutProperties": {
            "type": "object",
            "additionalProperties": true,
            "description": "A JSON-like object with arbitrary string keys."
          },
          "masterProperties": {
            "type": "object",
            "additionalProperties": true,
            "description": "A JSON-like object with arbitrary string keys."
          },
          "notesProperties": {
            "type": "object",
            "additionalProperties": true,
            "description": "A JSON-like object with arbitrary string keys."
          }
        },
        "additionalProperties": false,
        "description": "A Google Slides page summary."
      }
    },
    {
      "id": "googleslides.presentations_pages_get_thumbnail",
      "service": "googleslides",
      "name": "presentations_pages_get_thumbnail",
      "description": "Compatibility alias for get_page_thumbnail2. Generates a thumbnail for a Google Slides page.",
      "requiredScopes": [
        "https://www.googleapis.com/auth/presentations.readonly",
        "https://www.googleapis.com/auth/drive.readonly"
      ],
      "providerPermissions": [
        "https://www.googleapis.com/auth/presentations.readonly",
        "https://www.googleapis.com/auth/drive.readonly"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "presentationId": {
            "type": "string",
            "description": "The presentation ID."
          },
          "pageObjectId": {
            "type": "string",
            "description": "The page object ID."
          },
          "thumbnailProperties": {
            "type": "object",
            "properties": {
              "mimeType": {
                "const": "PNG",
                "type": "string",
                "description": "The mime type for the thumbnail image."
              },
              "thumbnailSize": {
                "type": "string",
                "enum": [
                  "THUMBNAIL_SIZE_UNSPECIFIED",
                  "LARGE",
                  "MEDIUM",
                  "SMALL"
                ],
                "description": "The thumbnail size."
              }
            },
            "additionalProperties": false,
            "description": "Thumbnail generation properties."
          }
        },
        "additionalProperties": false,
        "required": [
          "presentationId",
          "pageObjectId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "width": {
            "type": "integer",
            "description": "The width of the thumbnail in pixels."
          },
          "height": {
            "type": "integer",
            "description": "The height of the thumbnail in pixels."
          },
          "contentUrl": {
            "type": "string",
            "description": "The temporary content URL of the thumbnail."
          }
        },
        "additionalProperties": false,
        "required": [
          "width",
          "height",
          "contentUrl"
        ],
        "description": "A Google Slides page thumbnail."
      }
    }
  ]
}
