Youtube · Schema

SubscriptionSnippet

Basic information about the subscription

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
publishedAt string When the subscription was created
title string Title of the subscribed channel
description string Description of the subscribed channel
resourceId object
channelId string ID of the subscriber's channel
thumbnails object
View JSON Schema on GitHub

JSON Schema

youtube-subscriptionsnippet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriptionSnippet",
  "title": "SubscriptionSnippet",
  "type": "object",
  "description": "Basic information about the subscription",
  "properties": {
    "publishedAt": {
      "type": "string",
      "format": "date-time",
      "description": "When the subscription was created",
      "example": "2024-01-15T10:30:00Z"
    },
    "title": {
      "type": "string",
      "description": "Title of the subscribed channel",
      "example": "Google Developers"
    },
    "description": {
      "type": "string",
      "description": "Description of the subscribed channel"
    },
    "resourceId": {
      "$ref": "#/components/schemas/ResourceId"
    },
    "channelId": {
      "type": "string",
      "description": "ID of the subscriber's channel"
    },
    "thumbnails": {
      "$ref": "#/components/schemas/ThumbnailDetails"
    }
  }
}