changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "total_results": {
+ "description": "Total number of videos in channel",
+ "type": "number"
+ },
+ "videos": {
+ "description": "Array of video summary objects",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Video description",
+ "type": "string"
+ },
+ "published_at": {
+ "description": "ISO 8601 publish date",
+ "type": "string"
+ },
+ "thumbnail": {
+ "description": "Default thumbnail URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Video title",
+ "type": "string"
+ },
+ "video_id": {
+ "description": "Video ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "video_id",
+ "title",
+ "description",
+ "published_at",
+ "thumbnail"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "total_results",
+ "videos"
+ ],
+ "type": "object"
+}