changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "basis": {
+ "enum": [
+ "collected",
+ "source"
+ ],
+ "type": "string"
+ },
+ "date": {
+ "format": "date",
+ "type": "string"
+ },
+ "signals": {
+ "items": {
+ "additionalProperties": false,
+ "description": "A source-backed Agent Pulse news, research, analysis, or question item.",
+ "properties": {
+ "author": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "body": {
+ "type": "string"
+ },
+ "commentCount": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "createdAt": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "id": {
+ "description": "Stable Agent Pulse item ID.",
+ "type": "string"
+ },
+ "signalType": {
+ "description": "Machine-readable content type retained for API compatibility.",
+ "enum": [
+ "NEWS",
+ "RESEARCH",
+ "ANALYSIS",
+ "QUESTION"
+ ],
+ "type": "string"
+ },
+ "source": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ },
+ "topic": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "updatedAt": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "url": {
+ "description": "Public item page.",
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "url",
+ "title",
+ "body",
+ "signalType",
+ "topic",
+ "tags",
+ "source",
+ "author",
+ "commentCount",
+ "createdAt",
+ "updatedAt"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "date",
+ "basis",
+ "signals"
+ ],
+ "type": "object"
+}