changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "comments": {
+ "description": "List of comments on the story",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Username of comment author",
+ "type": "string"
+ },
+ "body": {
+ "description": "Comment text (plain text)",
+ "type": "string"
+ },
+ "created_at": {
+ "description": "ISO timestamp of comment creation",
+ "type": "string"
+ },
+ "indent_level": {
+ "description": "Nesting level in comment thread",
+ "type": "number"
+ },
+ "is_deleted": {
+ "description": "Whether comment is deleted",
+ "type": "boolean"
+ },
+ "is_moderated": {
+ "description": "Whether comment is moderated",
+ "type": "boolean"
+ },
+ "score": {
+ "description": "Total comment score",
+ "type": "number"
+ },
+ "short_id": {
+ "description": "Unique short ID for the comment",
+ "type": "string"
+ },
+ "url": {
+ "description": "Direct URL to the comment",
+ "type": "string"
+ }
+ },
+ "required": [
+ "short_id",
+ "url",
+ "created_at",
+ "score",
+ "indent_level",
+ "author",
+ "body",
+ "is_deleted",
+ "is_moderated"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "story": {
+ "description": "The story details",
+ "properties": {
+ "comment_count": {
+ "description": "Number of comments",
+ "type": "number"
+ },
+ "comments_url": {
+ "description": "URL to view comments on Lobsters",
+ "type": "string"
+ },
+ "created_at": {
+ "description": "ISO timestamp of story creation",
+ "type": "string"
+ },
+ "description": {
+ "description": "Plain text description or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "downvotes": {
+ "description": "Number of downvotes",
+ "type": "number"
+ },
+ "score": {
+ "description": "Total score (upvotes - downvotes)",
+ "type": "number"
+ },
+ "short_id": {
+ "description": "Unique short ID for the story",
+ "type": "string"
+ },
+ "submitter": {
+ "description": "Username of story submitter",
+ "type": "string"
+ },
+ "tags": {
+ "description": "Tags associated with the story",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Story title",
+ "type": "string"
+ },
+ "upvotes": {
+ "description": "Number of upvotes",
+ "type": "number"
+ },
+ "url": {
+ "description": "Story URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "short_id",
+ "url",
+ "comments_url",
+ "title",
+ "score",
+ "upvotes",
+ "downvotes",
+ "comment_count",
+ "created_at",
+ "submitter",
+ "tags",
+ "description"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "story",
+ "comments"
+ ],
+ "type": "object"
+}