Youtube · Schema

GroupItemResource

Resource information for a group item

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
kind string Type of resource
id string YouTube ID of the channel or video
View JSON Schema on GitHub

JSON Schema

youtube-groupitemresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupItemResource",
  "title": "GroupItemResource",
  "type": "object",
  "description": "Resource information for a group item",
  "required": [
    "kind",
    "id"
  ],
  "properties": {
    "kind": {
      "type": "string",
      "description": "Type of resource",
      "enum": [
        "youtube#channel",
        "youtube#video"
      ],
      "example": "youtube#video"
    },
    "id": {
      "type": "string",
      "description": "YouTube ID of the channel or video",
      "example": "dQw4w9WgXcQ"
    }
  }
}