changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of stories returned",
+ "type": "number"
+ },
+ "stories": {
+ "description": "List of trending stories",
+ "items": {
+ "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"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "stories"
+ ],
+ "type": "object"
+}