changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "description": "Matching feed items.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "description": "Item id.",
+ "type": "string"
+ },
+ "score": {
+ "description": "Community ranking score.",
+ "type": "number"
+ },
+ "summary": {
+ "description": "Short summary, or null when the item has not been enriched yet.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tags": {
+ "description": "Classifier tags.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Item title.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Canonical item URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "summary",
+ "tags",
+ "score",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "source": {
+ "additionalProperties": false,
+ "description": "Provenance of the payload.",
+ "properties": {
+ "name": {
+ "description": "Feed name.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Feed homepage URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "url"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "data",
+ "source"
+ ],
+ "type": "object"
+}