Sha256: 55b4bf4fa6177d16e0e8a47cb2c55c597981a4280cd29fa46b43dd17183ea366
Contents?: true
Size: 1.17 KB
Versions: 11
Compression:
Stored size: 1.17 KB
Contents
{ "$schema": "http://json-schema.org/draft-07/schema", "definitions": { "channel_id": { "type": "string" }, "timestamp": { "type": "string" }, "pin_item": { "type": "object", "description": "definition snipped. learn more: https://api.slack.com/events/pin_removed", "properties": { } }, "user_id": { "type": "string" }, "pin_removed": { "type": "object", "description": "learn more: https://api.slack.com/events/pin_removed", "properties": { "channel_id": { "$ref": "#/definitions/channel_id" }, "event_ts": { "$ref": "#/definitions/timestamp" }, "has_pins": { "type": "boolean" }, "item": { "$ref": "#/definitions/pin_item" }, "type": { "const": "pin_removed" }, "user": { "$ref": "#/definitions/user_id" } }, "example": { "channel_id": "C02ELGNBH", "event_ts": "1360782804.083113", "has_pins": false, "item": { }, "type": "pin_removed", "user": "U024BE7LH" } } } }
Version data entries
11 entries across 11 versions & 1 rubygems