changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "error": {
+ "description": "Error code if API call failed",
+ "type": "string"
+ },
+ "message": {
+ "description": "Error message or connection message",
+ "type": "string"
+ },
+ "messages": {
+ "description": "List of messages in the channel",
+ "items": {
+ "properties": {
+ "reply_count": {
+ "description": "Number of replies in thread",
+ "type": "number"
+ },
+ "reply_users_count": {
+ "description": "Number of unique users who replied",
+ "type": "number"
+ },
+ "text": {
+ "description": "Message text content",
+ "type": "string"
+ },
+ "thread_ts": {
+ "description": "Thread timestamp if message is in a thread",
+ "type": "string"
+ },
+ "ts": {
+ "description": "Unix timestamp with milliseconds",
+ "type": "string"
+ },
+ "type": {
+ "description": "Message type (e.g., 'message')",
+ "type": "string"
+ },
+ "user": {
+ "description": "User ID of message sender",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "ok": {
+ "description": "Whether the API call succeeded",
+ "type": "boolean"
+ },
+ "response_metadata": {
+ "description": "Pagination metadata",
+ "properties": {
+ "next_cursor": {
+ "description": "Cursor for next page of results",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+}