changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "channels": {
+ "description": "List of channel objects",
+ "items": {
+ "properties": {
+ "created": {
+ "description": "Unix timestamp of channel creation",
+ "type": "number"
+ },
+ "creator": {
+ "description": "User ID of channel creator",
+ "type": "string"
+ },
+ "id": {
+ "description": "Channel ID",
+ "type": "string"
+ },
+ "is_channel": {
+ "description": "Whether this is a channel",
+ "type": "boolean"
+ },
+ "is_member": {
+ "description": "Whether the bot is a member",
+ "type": "boolean"
+ },
+ "is_mpim": {
+ "description": "Whether this is a multi-person IM",
+ "type": "boolean"
+ },
+ "is_private": {
+ "description": "Whether the channel is private",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "Channel name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "error": {
+ "description": "Error code if API call failed",
+ "type": "string"
+ },
+ "message": {
+ "description": "Error message or connection message",
+ "type": "string"
+ },
+ "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"
+}