changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "articles": {
+ "description": "List of article summaries",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Article author information",
+ "properties": {
+ "name": {
+ "description": "Author full name",
+ "type": "string"
+ },
+ "username": {
+ "description": "Author username",
+ "type": "string"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "comments": {
+ "description": "Count of comments",
+ "type": "number"
+ },
+ "description": {
+ "description": "Article description or excerpt",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Article numeric ID",
+ "type": "number"
+ },
+ "published_at": {
+ "description": "Publication timestamp (ISO 8601 format)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "reactions": {
+ "description": "Count of public reactions",
+ "type": "number"
+ },
+ "reading_time_minutes": {
+ "description": "Estimated reading time in minutes",
+ "type": "number"
+ },
+ "tags": {
+ "description": "List of tags associated with article",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Article title",
+ "type": "string"
+ },
+ "url": {
+ "description": "Article URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "description",
+ "url",
+ "published_at",
+ "tags",
+ "reading_time_minutes",
+ "reactions",
+ "comments",
+ "author"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "page": {
+ "description": "Current page number",
+ "type": "number"
+ }
+ },
+ "required": [
+ "page",
+ "articles"
+ ],
+ "type": "object"
+}