changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "articles": {
+ "description": "Array of article objects",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Article author",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "content": {
+ "description": "Article content",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Article description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "publishedAt": {
+ "description": "Publication timestamp",
+ "type": "string"
+ },
+ "source": {
+ "properties": {
+ "id": {
+ "description": "Source ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Source name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "title": {
+ "description": "Article title",
+ "type": "string"
+ },
+ "url": {
+ "description": "Article URL",
+ "type": "string"
+ },
+ "urlToImage": {
+ "description": "Image URL for article",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "API response status",
+ "type": "string"
+ },
+ "totalResults": {
+ "description": "Total number of results available",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}