{ "$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" } } }