changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "description": {
+ "description": "Feed description",
+ "type": "string"
+ },
+ "feed": {
+ "description": "Feed name",
+ "enum": [
+ "ai_news"
+ ],
+ "type": "string"
+ },
+ "items": {
+ "description": "AI industry news items",
+ "items": {
+ "properties": {
+ "category": {
+ "description": "News category",
+ "type": "string"
+ },
+ "importance": {
+ "description": "Importance level",
+ "type": "string"
+ },
+ "published_at": {
+ "description": "Publication timestamp",
+ "type": "string"
+ },
+ "source": {
+ "description": "Source identifier",
+ "type": "string"
+ },
+ "summary": {
+ "description": "News summary",
+ "type": "string"
+ },
+ "title": {
+ "description": "News title",
+ "type": "string"
+ },
+ "url": {
+ "description": "Source URL",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "period": {
+ "description": "Time period description",
+ "type": "string"
+ },
+ "total": {
+ "description": "Number of news items found",
+ "type": "number"
+ }
+ },
+ "required": [
+ "feed",
+ "period",
+ "description",
+ "total",
+ "items"
+ ],
+ "type": "object"
+}