Youtube · Schema

Group

An analytics group for aggregating channel or video data

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
kind string Identifies the API resource type
etag string ETag for caching purposes
id string Unique identifier for the group
snippet object
contentDetails object
View JSON Schema on GitHub

JSON Schema

youtube-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "description": "An analytics group for aggregating channel or video data",
  "required": [
    "kind",
    "id",
    "snippet",
    "contentDetails"
  ],
  "properties": {
    "kind": {
      "type": "string",
      "description": "Identifies the API resource type",
      "example": "youtube#group"
    },
    "etag": {
      "type": "string",
      "description": "ETag for caching purposes"
    },
    "id": {
      "type": "string",
      "description": "Unique identifier for the group",
      "example": "ABCdef123456"
    },
    "snippet": {
      "$ref": "#/components/schemas/GroupSnippet"
    },
    "contentDetails": {
      "$ref": "#/components/schemas/GroupContentDetails"
    }
  }
}