Sha256: ae88bc88cb2faf0e85b7efbf1dc47dd08b7c51c6b828b2633b4c8151155baf4f
Contents?: true
Size: 1.17 KB
Versions: 4
Compression:
Stored size: 1.17 KB
Contents
{ "$schema": "http://json-schema.org/draft-07/schema", "definitions": { "channel_id": { "type": "string" }, "timestamp": { "type": "string" }, "user_id": { "type": "string" }, "channel_type": { "type": "string" }, "message.app_home": { "type": "object", "description": "learn more: https://api.slack.com/events/message.app_home", "properties": { "channel": { "$ref": "#/definitions/channel_id" }, "channel_type": { "type": "string" }, "event_ts": { "$ref": "#/definitions/timestamp" }, "text": { "type": "string" }, "ts": { "$ref": "#/definitions/timestamp" }, "type": { "const": "message" }, "user": { "$ref": "#/definitions/user_id" } }, "example": { "channel": "D0PNCRP9N", "channel_type": "app_home", "event_ts": "1525215129.000001", "text": "How many cats did we herd yesterday?", "ts": "1525215129.000001", "type": "message", "user": "U061F7AUR" } } } }
Version data entries
4 entries across 4 versions & 1 rubygems