changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "results": {
+ "description": "Array of search result items",
+ "items": {
+ "properties": {
+ "channel_id": {
+ "description": "Channel ID",
+ "type": "string"
+ },
+ "channel_title": {
+ "description": "Channel title",
+ "type": "string"
+ },
+ "description": {
+ "description": "Resource description",
+ "type": "string"
+ },
+ "id": {
+ "description": "Video, channel, or playlist ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "kind": {
+ "description": "Resource kind (youtube#video, youtube#channel, etc.)",
+ "type": "string"
+ },
+ "published_at": {
+ "description": "ISO 8601 publish date",
+ "type": "string"
+ },
+ "thumbnail": {
+ "description": "Default thumbnail URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Resource title",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "kind",
+ "title",
+ "description",
+ "channel_title",
+ "channel_id",
+ "published_at",
+ "thumbnail"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_results": {
+ "description": "Total number of search results available",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total_results",
+ "results"
+ ],
+ "type": "object"
+}