changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "hasMore": {
+ "description": "get_new_since: more items available now.",
+ "type": "boolean"
+ },
+ "items": {
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Item UUID — pass to get_related.",
+ "type": "string"
+ },
+ "publishedAt": {
+ "description": "ISO 8601 timestamp.",
+ "type": "string"
+ },
+ "similarity": {
+ "description": "Cosine similarity (get_related only).",
+ "type": "number"
+ },
+ "source": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "topics": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "url": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "title",
+ "source",
+ "publishedAt"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "nextCursor": {
+ "description": "get_new_since: pass back as cursor.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "items"
+ ],
+ "type": "object"
+}