Youtube · Schema

GroupListResponse

Response containing a list of analytics groups

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
kind string Identifies the API resource type
etag string ETag for caching purposes
items array List of analytics groups
nextPageToken string Token to retrieve the next page of results
View JSON Schema on GitHub

JSON Schema

youtube-grouplistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupListResponse",
  "title": "GroupListResponse",
  "type": "object",
  "description": "Response containing a list of analytics groups",
  "required": [
    "kind",
    "items"
  ],
  "properties": {
    "kind": {
      "type": "string",
      "description": "Identifies the API resource type",
      "example": "youtube#groupListResponse"
    },
    "etag": {
      "type": "string",
      "description": "ETag for caching purposes"
    },
    "items": {
      "type": "array",
      "description": "List of analytics groups",
      "items": {
        "$ref": "#/components/schemas/Group"
      }
    },
    "nextPageToken": {
      "type": "string",
      "description": "Token to retrieve the next page of results"
    }
  }
}