changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "items": {
+ "description": "Activity entries, newest first.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "created_at": {
+ "description": "Call timestamp (ISO 8601).",
+ "type": "string"
+ },
+ "invoice_number": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Related document number when the result carried one."
+ },
+ "tool_name": {
+ "description": "MCP tool that was called.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "tool_name",
+ "invoice_number",
+ "created_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items"
+ ],
+ "type": "object"
+}