changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "channel": {
+ "description": "Channel ID where message was sent",
+ "type": "string"
+ },
+ "error": {
+ "description": "Error code if message send failed",
+ "type": "string"
+ },
+ "message": {
+ "description": "Message object containing details",
+ "properties": {
+ "text": {
+ "description": "Message text",
+ "type": "string"
+ },
+ "ts": {
+ "description": "Message timestamp",
+ "type": "string"
+ },
+ "type": {
+ "description": "Message type",
+ "type": "string"
+ },
+ "user": {
+ "description": "User ID of sender",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "ok": {
+ "description": "Whether the message was sent successfully",
+ "type": "boolean"
+ },
+ "ts": {
+ "description": "Timestamp of sent message",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}