Youtube · Schema

GroupUpdateRequest

Request body for updating an analytics group

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
id string The ID of the group to update
snippet object
View JSON Schema on GitHub

JSON Schema

youtube-groupupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupUpdateRequest",
  "title": "GroupUpdateRequest",
  "type": "object",
  "description": "Request body for updating an analytics group",
  "required": [
    "id",
    "snippet"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the group to update",
      "example": "ABCdef123456"
    },
    "snippet": {
      "type": "object",
      "required": [
        "title"
      ],
      "properties": {
        "title": {
          "type": "string",
          "description": "The updated title for the group",
          "example": "Updated Analytics Group Name"
        }
      }
    }
  }
}