changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "error": {
+ "description": "Error code if API call failed",
+ "type": "string"
+ },
+ "members": {
+ "description": "List of user objects",
+ "items": {
+ "properties": {
+ "deleted": {
+ "description": "Whether user is deactivated",
+ "type": "boolean"
+ },
+ "id": {
+ "description": "User ID",
+ "type": "string"
+ },
+ "is_admin": {
+ "description": "Whether user is workspace admin",
+ "type": "boolean"
+ },
+ "is_bot": {
+ "description": "Whether this is a bot user",
+ "type": "boolean"
+ },
+ "is_owner": {
+ "description": "Whether user is workspace owner",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "User's display name",
+ "type": "string"
+ },
+ "profile": {
+ "description": "User profile information",
+ "properties": {
+ "display_name": {
+ "description": "User's display name",
+ "type": "string"
+ },
+ "email": {
+ "description": "User's email address",
+ "type": "string"
+ },
+ "real_name": {
+ "description": "User's real name",
+ "type": "string"
+ },
+ "status_emoji": {
+ "description": "User's status emoji",
+ "type": "string"
+ },
+ "status_text": {
+ "description": "User's status message",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "team_id": {
+ "description": "Workspace ID",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "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"
+}