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