changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "blogs": {
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Blog post ID",
+ "type": "number"
+ },
+ "image_url": {
+ "description": "Blog post image URL",
+ "type": "string"
+ },
+ "published_at": {
+ "description": "Publication date (ISO 8601)",
+ "type": "string"
+ },
+ "source": {
+ "description": "Blog source",
+ "type": "string"
+ },
+ "summary": {
+ "description": "Blog post summary",
+ "type": "string"
+ },
+ "title": {
+ "description": "Blog post title",
+ "type": "string"
+ },
+ "url": {
+ "description": "Blog post URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "summary",
+ "url",
+ "image_url",
+ "source",
+ "published_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "description": "Number of blog posts returned in this response",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total number of blog posts available",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "returned",
+ "blogs"
+ ],
+ "type": "object"
+}