Youtube · Schema

GroupItemListResponse

Response containing a list of group items

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
kind string Identifies the API resource type
etag string ETag for caching purposes
items array List of group items
View JSON Schema on GitHub

JSON Schema

youtube-groupitemlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupItemListResponse",
  "title": "GroupItemListResponse",
  "type": "object",
  "description": "Response containing a list of group items",
  "required": [
    "kind",
    "items"
  ],
  "properties": {
    "kind": {
      "type": "string",
      "description": "Identifies the API resource type",
      "example": "youtube#groupItemListResponse"
    },
    "etag": {
      "type": "string",
      "description": "ETag for caching purposes"
    },
    "items": {
      "type": "array",
      "description": "List of group items",
      "items": {
        "$ref": "#/components/schemas/GroupItem"
      }
    }
  }
}