changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "channels": {
+ "description": "Array of channel detail objects",
+ "items": {
+ "properties": {
+ "country": {
+ "description": "Country code if available",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "custom_url": {
+ "description": "Custom channel URL if available",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Channel description",
+ "type": "string"
+ },
+ "id": {
+ "description": "Channel ID",
+ "type": "string"
+ },
+ "published_at": {
+ "description": "ISO 8601 channel creation date",
+ "type": "string"
+ },
+ "subscriber_count": {
+ "description": "Subscriber count (null if hidden)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "thumbnail": {
+ "description": "Channel thumbnail URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Channel title",
+ "type": "string"
+ },
+ "uploads_playlist": {
+ "description": "Playlist ID containing all uploads",
+ "type": "string"
+ },
+ "video_count": {
+ "description": "Total video count",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "view_count": {
+ "description": "Total channel view count",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "description",
+ "custom_url",
+ "published_at",
+ "country",
+ "thumbnail",
+ "view_count",
+ "subscriber_count",
+ "video_count",
+ "uploads_playlist"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "channels"
+ ],
+ "type": "object"
+}