Youtube · Schema

SubscriptionContentDetails

Content details for the subscription

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
totalItemCount integer Total number of videos on the channel
newItemCount integer Number of new videos since last visit
View JSON Schema on GitHub

JSON Schema

youtube-subscriptioncontentdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriptionContentDetails",
  "title": "SubscriptionContentDetails",
  "type": "object",
  "description": "Content details for the subscription",
  "properties": {
    "totalItemCount": {
      "type": "integer",
      "description": "Total number of videos on the channel",
      "example": 500
    },
    "newItemCount": {
      "type": "integer",
      "description": "Number of new videos since last visit",
      "example": 5
    }
  }
}