changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "MessageItem": {
+ "properties": {
+ "agent_id": {
+ "title": "Agent Id",
+ "type": "string"
+ },
+ "id": {
+ "title": "Id",
+ "type": "integer"
+ },
+ "text": {
+ "title": "Text",
+ "type": "string"
+ },
+ "timestamp": {
+ "title": "Timestamp",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "agent_id",
+ "text",
+ "timestamp"
+ ],
+ "title": "MessageItem",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "has_more": {
+ "title": "Has More",
+ "type": "boolean"
+ },
+ "messages": {
+ "items": {
+ "$ref": "#/$defs/MessageItem"
+ },
+ "title": "Messages",
+ "type": "array"
+ }
+ },
+ "required": [
+ "messages",
+ "has_more"
+ ],
+ "title": "ReadMessagesResult",
+ "type": "object"
+}