changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "videos": {
+ "description": "Array of video detail objects",
+ "items": {
+ "properties": {
+ "category_id": {
+ "description": "YouTube category ID",
+ "type": "string"
+ },
+ "channel_id": {
+ "description": "Channel ID",
+ "type": "string"
+ },
+ "channel_title": {
+ "description": "Channel title",
+ "type": "string"
+ },
+ "comment_count": {
+ "description": "Total comment count",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "definition": {
+ "description": "Video definition (sd or hd)",
+ "type": "string"
+ },
+ "description": {
+ "description": "Video description",
+ "type": "string"
+ },
+ "duration": {
+ "description": "ISO 8601 duration string (e.g., PT5M30S)",
+ "type": "string"
+ },
+ "id": {
+ "description": "Video ID",
+ "type": "string"
+ },
+ "like_count": {
+ "description": "Total like count",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "published_at": {
+ "description": "ISO 8601 publish date",
+ "type": "string"
+ },
+ "tags": {
+ "description": "Array of video tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "thumbnail": {
+ "description": "Default thumbnail URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Video title",
+ "type": "string"
+ },
+ "view_count": {
+ "description": "Total view count",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "description",
+ "channel_title",
+ "channel_id",
+ "published_at",
+ "tags",
+ "category_id",
+ "thumbnail",
+ "duration",
+ "definition",
+ "view_count",
+ "like_count",
+ "comment_count"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "videos"
+ ],
+ "type": "object"
+}