changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "feed": {
+ "description": "Feed metadata",
+ "properties": {
+ "description": {
+ "description": "Feed description",
+ "type": "string"
+ },
+ "image": {
+ "description": "Feed image URL",
+ "type": "string"
+ },
+ "link": {
+ "description": "Feed link",
+ "type": "string"
+ },
+ "title": {
+ "description": "Feed title",
+ "type": "string"
+ },
+ "url": {
+ "description": "Feed URL",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "items": {
+ "description": "Array of feed items/entries",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Item author",
+ "type": "string"
+ },
+ "categories": {
+ "description": "Item categories",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "content": {
+ "description": "Full item content",
+ "type": "string"
+ },
+ "description": {
+ "description": "Item description or content",
+ "type": "string"
+ },
+ "enclosure": {
+ "description": "Media enclosure (podcast, video, etc.)",
+ "properties": {
+ "length": {
+ "description": "Enclosure size in bytes",
+ "type": "string"
+ },
+ "link": {
+ "description": "Enclosure URL",
+ "type": "string"
+ },
+ "type": {
+ "description": "MIME type",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "link": {
+ "description": "Item URL",
+ "type": "string"
+ },
+ "pubDate": {
+ "description": "Publication date in ISO 8601 format",
+ "type": "string"
+ },
+ "title": {
+ "description": "Item title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "Status of the API response (ok, error, etc.)",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}