changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "comments": {
+ "description": "Array of top-level comment thread objects",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Author display name",
+ "type": "string"
+ },
+ "author_channel_url": {
+ "description": "Author's channel URL",
+ "type": "string"
+ },
+ "comment_id": {
+ "description": "Comment ID",
+ "type": "string"
+ },
+ "like_count": {
+ "description": "Number of likes on comment",
+ "type": "number"
+ },
+ "published_at": {
+ "description": "ISO 8601 publish date",
+ "type": "string"
+ },
+ "reply_count": {
+ "description": "Number of replies to comment",
+ "type": "number"
+ },
+ "text": {
+ "description": "Comment text content",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "ISO 8601 last update date",
+ "type": "string"
+ }
+ },
+ "required": [
+ "comment_id",
+ "author",
+ "author_channel_url",
+ "text",
+ "like_count",
+ "reply_count",
+ "published_at",
+ "updated_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_results": {
+ "description": "Total number of comment threads",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total_results",
+ "comments"
+ ],
+ "type": "object"
+}