Sha256: 61140bc6046be054a89f58fa0ed04b7af2388e64ab5f88922d42b119ea1f54df
Contents?: true
Size: 1008 Bytes
Versions: 4
Compression:
Stored size: 1008 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-07/schema", "definitions": { "channel_id": { "type": "string" }, "channel_type": { "type": "string" }, "team_id": { "type": "string" }, "user_id": { "type": "string" }, "member_left_channel": { "type": "object", "description": "learn more: https://api.slack.com/events/member_left_channel", "properties": { "channel": { "$ref": "#/definitions/channel_id" }, "channel_type": { "$ref": "#/definitions/channel_type" }, "team": { "$ref": "#/definitions/team_id" }, "type": { "const": "member_left_channel" }, "user": { "$ref": "#/definitions/user_id" } }, "example": { "channel": "C0698JE0H", "channel_type": "C", "team": "T024BE7LD", "type": "member_left_channel", "user": "W06GH7XHN" } } } }
Version data entries
4 entries across 4 versions & 1 rubygems