slack_resources 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (254) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +66 -1
  3. data/.rubocop.yml +10 -2
  4. data/Gemfile +0 -1
  5. data/Gemfile.lock +7 -7
  6. data/lib/generate_event_api_resources.rb +8 -0
  7. data/lib/slack_resources.rb +9 -1
  8. data/lib/slack_resources/generator/event_api/examples_preparation.rb +71 -0
  9. data/lib/{event_api → slack_resources/generator/event_api}/fetch.rb +0 -0
  10. data/lib/slack_resources/generator/event_api/strong_hash.rb +25 -0
  11. data/lib/slack_resources/generator/event_api/to_schema.rb +200 -0
  12. data/lib/slack_resources/generator/event_api/type_detection.rb +272 -0
  13. data/lib/slack_resources/generator/event_api/write.rb +123 -0
  14. data/lib/slack_resources/raw_data/event_api/_added_examples/emoji_changed.add.json +7 -0
  15. data/lib/slack_resources/raw_data/event_api/_added_examples/emoji_changed.remove.json +6 -0
  16. data/lib/slack_resources/{resources → raw_data}/event_api/_added_examples/event_callback.json +0 -0
  17. data/lib/slack_resources/raw_data/event_api/examples/app_mention.json +8 -0
  18. data/lib/slack_resources/raw_data/event_api/examples/app_rate_limited.json +7 -0
  19. data/lib/slack_resources/raw_data/event_api/examples/app_uninstalled.json +11 -0
  20. data/lib/slack_resources/raw_data/event_api/examples/channel_archive.json +5 -0
  21. data/lib/slack_resources/raw_data/event_api/examples/channel_created.json +9 -0
  22. data/lib/slack_resources/raw_data/event_api/examples/channel_deleted.json +4 -0
  23. data/lib/slack_resources/raw_data/event_api/examples/channel_history_changed.json +6 -0
  24. data/lib/slack_resources/raw_data/event_api/examples/channel_left.json +4 -0
  25. data/lib/slack_resources/raw_data/event_api/examples/channel_rename.json +8 -0
  26. data/lib/slack_resources/raw_data/event_api/examples/channel_unarchive.json +5 -0
  27. data/lib/slack_resources/raw_data/event_api/examples/dnd_updated.json +11 -0
  28. data/lib/slack_resources/raw_data/event_api/examples/dnd_updated_user.json +9 -0
  29. data/lib/slack_resources/raw_data/event_api/examples/email_domain_changed.json +5 -0
  30. data/lib/slack_resources/raw_data/event_api/examples/emoji_changed.json +8 -0
  31. data/lib/slack_resources/raw_data/event_api/examples/file_change.json +7 -0
  32. data/lib/slack_resources/raw_data/event_api/examples/file_comment_added.json +9 -0
  33. data/lib/slack_resources/raw_data/event_api/examples/file_comment_deleted.json +8 -0
  34. data/lib/slack_resources/raw_data/event_api/examples/file_comment_edited.json +9 -0
  35. data/lib/slack_resources/raw_data/event_api/examples/file_created.json +7 -0
  36. data/lib/slack_resources/raw_data/event_api/examples/file_deleted.json +5 -0
  37. data/lib/slack_resources/raw_data/event_api/examples/file_public.json +7 -0
  38. data/lib/slack_resources/raw_data/event_api/examples/file_shared.json +7 -0
  39. data/lib/slack_resources/raw_data/event_api/examples/file_unshared.json +7 -0
  40. data/lib/slack_resources/raw_data/event_api/examples/grid_migration_finished.json +12 -0
  41. data/lib/slack_resources/raw_data/event_api/examples/grid_migration_started.json +12 -0
  42. data/lib/slack_resources/raw_data/event_api/examples/group_archive.json +4 -0
  43. data/lib/slack_resources/raw_data/event_api/examples/group_close.json +5 -0
  44. data/lib/slack_resources/raw_data/event_api/examples/group_deleted.json +4 -0
  45. data/lib/slack_resources/raw_data/event_api/examples/group_history_changed.json +6 -0
  46. data/lib/slack_resources/raw_data/event_api/examples/group_left.json +4 -0
  47. data/lib/slack_resources/raw_data/event_api/examples/group_open.json +5 -0
  48. data/lib/slack_resources/raw_data/event_api/examples/group_rename.json +8 -0
  49. data/lib/slack_resources/raw_data/event_api/examples/group_unarchive.json +4 -0
  50. data/lib/slack_resources/raw_data/event_api/examples/im_close.json +5 -0
  51. data/lib/slack_resources/raw_data/event_api/examples/im_created.json +6 -0
  52. data/lib/slack_resources/raw_data/event_api/examples/im_history_changed.json +6 -0
  53. data/lib/slack_resources/raw_data/event_api/examples/im_open.json +5 -0
  54. data/lib/slack_resources/raw_data/event_api/examples/link_shared.json +33 -0
  55. data/lib/slack_resources/raw_data/event_api/examples/member_joined_channel.json +8 -0
  56. data/lib/slack_resources/raw_data/event_api/examples/member_left_channel.json +7 -0
  57. data/lib/slack_resources/raw_data/event_api/examples/message.app_home.json +20 -0
  58. data/lib/slack_resources/raw_data/event_api/examples/message.channels.json +20 -0
  59. data/lib/slack_resources/raw_data/event_api/examples/message.groups.json +20 -0
  60. data/lib/slack_resources/raw_data/event_api/examples/message.im.json +20 -0
  61. data/lib/slack_resources/raw_data/event_api/examples/message.json +7 -0
  62. data/lib/slack_resources/raw_data/event_api/examples/message.mpim.json +20 -0
  63. data/lib/slack_resources/raw_data/event_api/examples/pin_added.json +8 -0
  64. data/lib/slack_resources/raw_data/event_api/examples/pin_removed.json +9 -0
  65. data/lib/slack_resources/raw_data/event_api/examples/reaction_added.json +12 -0
  66. data/lib/slack_resources/raw_data/event_api/examples/reaction_removed.json +12 -0
  67. data/lib/slack_resources/raw_data/event_api/examples/resources_added.json +31 -0
  68. data/lib/slack_resources/raw_data/event_api/examples/resources_removed.json +31 -0
  69. data/lib/slack_resources/raw_data/event_api/examples/scope_denied.json +20 -0
  70. data/lib/slack_resources/raw_data/event_api/examples/scope_granted.json +20 -0
  71. data/lib/slack_resources/raw_data/event_api/examples/star_added.json +7 -0
  72. data/lib/slack_resources/raw_data/event_api/examples/star_removed.json +7 -0
  73. data/lib/slack_resources/raw_data/event_api/examples/subteam_created.json +28 -0
  74. data/lib/slack_resources/raw_data/event_api/examples/subteam_members_changed.json +17 -0
  75. data/lib/slack_resources/raw_data/event_api/examples/subteam_self_added.json +4 -0
  76. data/lib/slack_resources/raw_data/event_api/examples/subteam_self_removed.json +4 -0
  77. data/lib/slack_resources/raw_data/event_api/examples/subteam_updated.json +34 -0
  78. data/lib/slack_resources/raw_data/event_api/examples/team_domain_change.json +5 -0
  79. data/lib/slack_resources/raw_data/event_api/examples/team_join.json +5 -0
  80. data/lib/slack_resources/raw_data/event_api/examples/team_rename.json +4 -0
  81. data/lib/slack_resources/raw_data/event_api/examples/tokens_revoked.json +19 -0
  82. data/lib/slack_resources/raw_data/event_api/examples/url_verification.json +5 -0
  83. data/lib/slack_resources/raw_data/event_api/examples/user_change.json +5 -0
  84. data/lib/slack_resources/raw_data/event_api/examples/user_resource_denied.json +20 -0
  85. data/lib/slack_resources/raw_data/event_api/examples/user_resource_granted.json +20 -0
  86. data/lib/slack_resources/raw_data/event_api/examples/user_resource_removed.json +16 -0
  87. data/lib/slack_resources/{resources → raw_data}/event_api/meta.json +0 -72
  88. data/lib/{schema.json → slack_resources/raw_data/event_api/preset_schemas.json} +7 -0
  89. data/lib/slack_resources/resources/event_api.rb +38 -0
  90. data/lib/slack_resources/resources/event_api/details/app_mention.json +67 -46
  91. data/lib/slack_resources/resources/event_api/details/app_rate_limited.json +59 -41
  92. data/lib/slack_resources/resources/event_api/details/app_uninstalled.json +22 -16
  93. data/lib/slack_resources/resources/event_api/details/channel_archive.json +42 -30
  94. data/lib/slack_resources/resources/event_api/details/channel_created.json +63 -54
  95. data/lib/slack_resources/resources/event_api/details/channel_deleted.json +32 -23
  96. data/lib/slack_resources/resources/event_api/details/channel_history_changed.json +48 -33
  97. data/lib/slack_resources/resources/event_api/details/channel_left.json +32 -23
  98. data/lib/slack_resources/resources/event_api/details/channel_rename.json +58 -49
  99. data/lib/slack_resources/resources/event_api/details/channel_unarchive.json +42 -30
  100. data/lib/slack_resources/resources/event_api/details/dnd_updated.json +66 -54
  101. data/lib/slack_resources/resources/event_api/details/dnd_updated_user.json +62 -50
  102. data/lib/slack_resources/resources/event_api/details/email_domain_changed.json +39 -27
  103. data/lib/slack_resources/resources/event_api/details/emoji_changed.add.json +78 -0
  104. data/lib/slack_resources/resources/event_api/details/emoji_changed.json +85 -44
  105. data/lib/slack_resources/resources/event_api/details/emoji_changed.remove.json +77 -0
  106. data/lib/slack_resources/resources/event_api/details/event_callback.json +102 -72
  107. data/lib/slack_resources/resources/event_api/details/file_change.json +49 -37
  108. data/lib/slack_resources/resources/event_api/details/file_comment_added.json +61 -46
  109. data/lib/slack_resources/resources/event_api/details/file_comment_deleted.json +59 -44
  110. data/lib/slack_resources/resources/event_api/details/file_comment_edited.json +61 -46
  111. data/lib/slack_resources/resources/event_api/details/file_created.json +49 -37
  112. data/lib/slack_resources/resources/event_api/details/file_deleted.json +41 -29
  113. data/lib/slack_resources/resources/event_api/details/file_public.json +49 -37
  114. data/lib/slack_resources/resources/event_api/details/file_shared.json +49 -37
  115. data/lib/slack_resources/resources/event_api/details/file_unshared.json +49 -37
  116. data/lib/slack_resources/resources/event_api/details/grid_migration_finished.json +31 -22
  117. data/lib/slack_resources/resources/event_api/details/grid_migration_started.json +31 -22
  118. data/lib/slack_resources/resources/event_api/details/group_archive.json +32 -23
  119. data/lib/slack_resources/resources/event_api/details/group_close.json +42 -30
  120. data/lib/slack_resources/resources/event_api/details/group_deleted.json +32 -23
  121. data/lib/slack_resources/resources/event_api/details/group_history_changed.json +48 -33
  122. data/lib/slack_resources/resources/event_api/details/group_left.json +32 -23
  123. data/lib/slack_resources/resources/event_api/details/group_open.json +42 -30
  124. data/lib/slack_resources/resources/event_api/details/group_rename.json +58 -49
  125. data/lib/slack_resources/resources/event_api/details/group_unarchive.json +32 -23
  126. data/lib/slack_resources/resources/event_api/details/im_close.json +42 -30
  127. data/lib/slack_resources/resources/event_api/details/im_created.json +53 -41
  128. data/lib/slack_resources/resources/event_api/details/im_history_changed.json +48 -33
  129. data/lib/slack_resources/resources/event_api/details/im_open.json +42 -30
  130. data/lib/slack_resources/resources/event_api/details/link_shared.json +107 -83
  131. data/lib/slack_resources/resources/event_api/details/member_joined_channel.json +66 -48
  132. data/lib/slack_resources/resources/event_api/details/member_left_channel.json +58 -43
  133. data/lib/slack_resources/resources/event_api/details/message.app_home.json +74 -53
  134. data/lib/slack_resources/resources/event_api/details/message.channels.json +74 -56
  135. data/lib/slack_resources/resources/event_api/details/message.groups.json +74 -56
  136. data/lib/slack_resources/resources/event_api/details/message.im.json +74 -56
  137. data/lib/slack_resources/resources/event_api/details/message.json +106 -60
  138. data/lib/slack_resources/resources/event_api/details/message.mpim.json +74 -56
  139. data/lib/slack_resources/resources/event_api/details/pin_added.json +65 -47
  140. data/lib/slack_resources/resources/event_api/details/pin_removed.json +73 -52
  141. data/lib/slack_resources/resources/event_api/details/reaction_added.json +94 -73
  142. data/lib/slack_resources/resources/event_api/details/reaction_removed.json +94 -73
  143. data/lib/slack_resources/resources/event_api/details/resources_added.json +127 -115
  144. data/lib/slack_resources/resources/event_api/details/resources_removed.json +127 -115
  145. data/lib/slack_resources/resources/event_api/details/scope_denied.json +74 -59
  146. data/lib/slack_resources/resources/event_api/details/scope_granted.json +74 -59
  147. data/lib/slack_resources/resources/event_api/details/star_added.json +56 -41
  148. data/lib/slack_resources/resources/event_api/details/star_removed.json +56 -41
  149. data/lib/slack_resources/resources/event_api/details/subteam_created.json +177 -168
  150. data/lib/slack_resources/resources/event_api/details/subteam_members_changed.json +118 -82
  151. data/lib/slack_resources/resources/event_api/details/subteam_self_added.json +31 -22
  152. data/lib/slack_resources/resources/event_api/details/subteam_self_removed.json +31 -22
  153. data/lib/slack_resources/resources/event_api/details/subteam_updated.json +189 -180
  154. data/lib/slack_resources/resources/event_api/details/team_domain_change.json +38 -26
  155. data/lib/slack_resources/resources/event_api/details/team_join.json +35 -26
  156. data/lib/slack_resources/resources/event_api/details/team_rename.json +32 -23
  157. data/lib/slack_resources/resources/event_api/details/tokens_revoked.json +58 -49
  158. data/lib/slack_resources/resources/event_api/details/url_verification.json +32 -26
  159. data/lib/slack_resources/resources/event_api/details/user_change.json +35 -26
  160. data/lib/slack_resources/resources/event_api/details/user_resource_denied.json +82 -64
  161. data/lib/slack_resources/resources/event_api/details/user_resource_granted.json +82 -64
  162. data/lib/slack_resources/resources/event_api/details/user_resource_removed.json +41 -29
  163. data/lib/slack_resources/resources/event_api/examples/app_mention.json +4 -4
  164. data/lib/slack_resources/resources/event_api/examples/app_rate_limited.json +4 -4
  165. data/lib/slack_resources/resources/event_api/examples/app_uninstalled.json +1 -9
  166. data/lib/slack_resources/resources/event_api/examples/channel_archive.json +1 -1
  167. data/lib/slack_resources/resources/event_api/examples/channel_created.json +2 -2
  168. data/lib/slack_resources/resources/event_api/examples/channel_deleted.json +2 -2
  169. data/lib/slack_resources/resources/event_api/examples/channel_history_changed.json +2 -2
  170. data/lib/slack_resources/resources/event_api/examples/channel_left.json +2 -2
  171. data/lib/slack_resources/resources/event_api/examples/channel_rename.json +2 -2
  172. data/lib/slack_resources/resources/event_api/examples/channel_unarchive.json +1 -1
  173. data/lib/slack_resources/resources/event_api/examples/dnd_updated.json +3 -3
  174. data/lib/slack_resources/resources/event_api/examples/dnd_updated_user.json +3 -3
  175. data/lib/slack_resources/resources/event_api/examples/email_domain_changed.json +2 -2
  176. data/lib/slack_resources/resources/event_api/examples/emoji_changed.add.json +7 -0
  177. data/lib/slack_resources/resources/event_api/examples/emoji_changed.json +4 -5
  178. data/lib/slack_resources/resources/event_api/examples/emoji_changed.remove.json +8 -0
  179. data/lib/slack_resources/resources/event_api/examples/event_callback.json +7 -6
  180. data/lib/slack_resources/resources/event_api/examples/file_change.json +3 -3
  181. data/lib/slack_resources/resources/event_api/examples/file_comment_added.json +3 -3
  182. data/lib/slack_resources/resources/event_api/examples/file_comment_deleted.json +3 -3
  183. data/lib/slack_resources/resources/event_api/examples/file_comment_edited.json +3 -3
  184. data/lib/slack_resources/resources/event_api/examples/file_created.json +3 -3
  185. data/lib/slack_resources/resources/event_api/examples/file_deleted.json +2 -2
  186. data/lib/slack_resources/resources/event_api/examples/file_public.json +3 -3
  187. data/lib/slack_resources/resources/event_api/examples/file_shared.json +3 -3
  188. data/lib/slack_resources/resources/event_api/examples/file_unshared.json +3 -3
  189. data/lib/slack_resources/resources/event_api/examples/grid_migration_finished.json +2 -10
  190. data/lib/slack_resources/resources/event_api/examples/grid_migration_started.json +2 -10
  191. data/lib/slack_resources/resources/event_api/examples/group_archive.json +2 -2
  192. data/lib/slack_resources/resources/event_api/examples/group_close.json +2 -2
  193. data/lib/slack_resources/resources/event_api/examples/group_deleted.json +2 -2
  194. data/lib/slack_resources/resources/event_api/examples/group_history_changed.json +2 -2
  195. data/lib/slack_resources/resources/event_api/examples/group_left.json +2 -2
  196. data/lib/slack_resources/resources/event_api/examples/group_open.json +2 -2
  197. data/lib/slack_resources/resources/event_api/examples/group_rename.json +2 -2
  198. data/lib/slack_resources/resources/event_api/examples/group_unarchive.json +2 -2
  199. data/lib/slack_resources/resources/event_api/examples/im_close.json +2 -2
  200. data/lib/slack_resources/resources/event_api/examples/im_created.json +3 -3
  201. data/lib/slack_resources/resources/event_api/examples/im_history_changed.json +2 -2
  202. data/lib/slack_resources/resources/event_api/examples/im_open.json +2 -2
  203. data/lib/slack_resources/resources/event_api/examples/link_shared.json +18 -30
  204. data/lib/slack_resources/resources/event_api/examples/member_joined_channel.json +3 -3
  205. data/lib/slack_resources/resources/event_api/examples/member_left_channel.json +3 -3
  206. data/lib/slack_resources/resources/event_api/examples/message.app_home.json +7 -18
  207. data/lib/slack_resources/resources/event_api/examples/message.channels.json +7 -18
  208. data/lib/slack_resources/resources/event_api/examples/message.groups.json +7 -18
  209. data/lib/slack_resources/resources/event_api/examples/message.im.json +7 -18
  210. data/lib/slack_resources/resources/event_api/examples/message.json +6 -4
  211. data/lib/slack_resources/resources/event_api/examples/message.mpim.json +7 -18
  212. data/lib/slack_resources/resources/event_api/examples/pin_added.json +3 -3
  213. data/lib/slack_resources/resources/event_api/examples/pin_removed.json +4 -4
  214. data/lib/slack_resources/resources/event_api/examples/reaction_added.json +5 -5
  215. data/lib/slack_resources/resources/event_api/examples/reaction_removed.json +5 -5
  216. data/lib/slack_resources/resources/event_api/examples/resources_added.json +17 -28
  217. data/lib/slack_resources/resources/event_api/examples/resources_removed.json +17 -28
  218. data/lib/slack_resources/resources/event_api/examples/scope_denied.json +6 -17
  219. data/lib/slack_resources/resources/event_api/examples/scope_granted.json +6 -17
  220. data/lib/slack_resources/resources/event_api/examples/star_added.json +3 -3
  221. data/lib/slack_resources/resources/event_api/examples/star_removed.json +3 -3
  222. data/lib/slack_resources/resources/event_api/examples/subteam_created.json +2 -2
  223. data/lib/slack_resources/resources/event_api/examples/subteam_members_changed.json +6 -6
  224. data/lib/slack_resources/resources/event_api/examples/subteam_self_added.json +2 -2
  225. data/lib/slack_resources/resources/event_api/examples/subteam_self_removed.json +2 -2
  226. data/lib/slack_resources/resources/event_api/examples/subteam_updated.json +2 -2
  227. data/lib/slack_resources/resources/event_api/examples/team_domain_change.json +2 -2
  228. data/lib/slack_resources/resources/event_api/examples/team_rename.json +2 -2
  229. data/lib/slack_resources/resources/event_api/examples/tokens_revoked.json +8 -16
  230. data/lib/slack_resources/resources/event_api/examples/url_verification.json +1 -1
  231. data/lib/slack_resources/resources/event_api/examples/user_resource_denied.json +6 -17
  232. data/lib/slack_resources/resources/event_api/examples/user_resource_granted.json +6 -17
  233. data/lib/slack_resources/resources/event_api/examples/user_resource_removed.json +3 -14
  234. data/lib/slack_resources/resources/event_api/schema.json +257 -105
  235. data/lib/slack_resources/resources/event_api/schemas/emoji_changed.add.json +42 -0
  236. data/lib/slack_resources/resources/event_api/schemas/emoji_changed.json +27 -9
  237. data/lib/slack_resources/resources/event_api/schemas/emoji_changed.remove.json +40 -0
  238. data/lib/slack_resources/resources/event_api/schemas/member_joined_channel.json +1 -4
  239. data/lib/slack_resources/resources/event_api/schemas/member_left_channel.json +1 -4
  240. data/lib/slack_resources/resources/event_api/schemas/message.app_home.json +1 -4
  241. data/lib/slack_resources/resources/event_api/schemas/message.channels.json +1 -7
  242. data/lib/slack_resources/resources/event_api/schemas/message.groups.json +1 -7
  243. data/lib/slack_resources/resources/event_api/schemas/message.im.json +1 -7
  244. data/lib/slack_resources/resources/event_api/schemas/message.json +39 -17
  245. data/lib/slack_resources/resources/event_api/schemas/message.mpim.json +1 -7
  246. data/lib/slack_resources/resources/event_api/schemas/resources_added.json +15 -15
  247. data/lib/slack_resources/resources/event_api/schemas/resources_removed.json +15 -15
  248. data/lib/slack_resources/resources/event_api/schemas/team_rename.json +2 -2
  249. data/lib/slack_resources/resources/event_api/schemas/url_verification.json +0 -6
  250. data/lib/slack_resources/resources/event_api/summary.json +4887 -3400
  251. data/slack_resources.gemspec +4 -2
  252. metadata +91 -8
  253. data/lib/event_api/write.rb +0 -364
  254. data/lib/slack_resources/version.rb +0 -3
@@ -1,61 +1,79 @@
1
1
  {
2
2
  "url": "https://api.slack.com/events/pin_added",
3
- "type": "pin_added",
4
- "response": {
5
- "channel_id": "C02ELGNBH",
6
- "event_ts": "1360782804.083113",
7
- "item": {
3
+ "event": "pin_added",
4
+ "sub_schemas": {
5
+ "channel_id": {
6
+ "type": "string"
8
7
  },
9
- "type": "pin_added",
10
- "user": "U024BE7LH"
8
+ "timestamp": {
9
+ "type": "string"
10
+ },
11
+ "pin_item": {
12
+ "type": "object",
13
+ "description": "definition snipped. learn more: https://api.slack.com/events/pin_removed",
14
+ "properties": {
15
+ }
16
+ },
17
+ "user_id": {
18
+ "type": "string"
19
+ },
20
+ "pin_added": {
21
+ "type": "object",
22
+ "description": "learn more: https://api.slack.com/events/pin_added",
23
+ "properties": {
24
+ "channel_id": {
25
+ "$ref": "#/definitions/channel_id"
26
+ },
27
+ "event_ts": {
28
+ "$ref": "#/definitions/timestamp"
29
+ },
30
+ "item": {
31
+ "$ref": "#/definitions/pin_item"
32
+ },
33
+ "type": {
34
+ "const": "pin_added"
35
+ },
36
+ "user": {
37
+ "$ref": "#/definitions/user_id"
38
+ }
39
+ },
40
+ "example": {
41
+ "channel_id": "C02ELGNBH",
42
+ "event_ts": "1360782804.083113",
43
+ "item": {
44
+ },
45
+ "type": "pin_added",
46
+ "user": "U024BE7LH"
47
+ }
48
+ }
11
49
  },
12
50
  "schema": {
13
- "$schema": "http://json-schema.org/draft-07/schema",
14
- "definitions": {
51
+ "type": "object",
52
+ "description": "learn more: https://api.slack.com/events/pin_added",
53
+ "properties": {
15
54
  "channel_id": {
16
- "type": "string"
55
+ "$ref": "#/definitions/channel_id"
17
56
  },
18
- "timestamp": {
19
- "type": "string"
57
+ "event_ts": {
58
+ "$ref": "#/definitions/timestamp"
20
59
  },
21
- "pin_item": {
22
- "type": "object",
23
- "description": "definition snipped. learn more: https://api.slack.com/events/pin_removed",
24
- "properties": {
25
- }
60
+ "item": {
61
+ "$ref": "#/definitions/pin_item"
26
62
  },
27
- "user_id": {
28
- "type": "string"
63
+ "type": {
64
+ "const": "pin_added"
29
65
  },
30
- "pin_added": {
31
- "type": "object",
32
- "description": "learn more: https://api.slack.com/events/pin_added",
33
- "properties": {
34
- "channel_id": {
35
- "$ref": "#/definitions/channel_id"
36
- },
37
- "event_ts": {
38
- "$ref": "#/definitions/timestamp"
39
- },
40
- "item": {
41
- "$ref": "#/definitions/pin_item"
42
- },
43
- "type": {
44
- "const": "pin_added"
45
- },
46
- "user": {
47
- "$ref": "#/definitions/user_id"
48
- }
49
- },
50
- "example": {
51
- "channel_id": "C02ELGNBH",
52
- "event_ts": "1360782804.083113",
53
- "item": {
54
- },
55
- "type": "pin_added",
56
- "user": "U024BE7LH"
57
- }
66
+ "user": {
67
+ "$ref": "#/definitions/user_id"
58
68
  }
69
+ },
70
+ "example": {
71
+ "channel_id": "C02ELGNBH",
72
+ "event_ts": "1360782804.083113",
73
+ "item": {
74
+ },
75
+ "type": "pin_added",
76
+ "user": "U024BE7LH"
59
77
  }
60
78
  },
61
79
  "compatibility": [
@@ -1,66 +1,87 @@
1
1
  {
2
2
  "url": "https://api.slack.com/events/pin_removed",
3
- "type": "pin_removed",
4
- "response": {
5
- "channel_id": "C02ELGNBH",
6
- "event_ts": "1360782804.083113",
7
- "has_pins": false,
8
- "item": {
3
+ "event": "pin_removed",
4
+ "sub_schemas": {
5
+ "channel_id": {
6
+ "type": "string"
9
7
  },
10
- "type": "pin_removed",
11
- "user": "U024BE7LH"
8
+ "timestamp": {
9
+ "type": "string"
10
+ },
11
+ "pin_item": {
12
+ "type": "object",
13
+ "description": "definition snipped. learn more: https://api.slack.com/events/pin_removed",
14
+ "properties": {
15
+ }
16
+ },
17
+ "user_id": {
18
+ "type": "string"
19
+ },
20
+ "pin_removed": {
21
+ "type": "object",
22
+ "description": "learn more: https://api.slack.com/events/pin_removed",
23
+ "properties": {
24
+ "channel_id": {
25
+ "$ref": "#/definitions/channel_id"
26
+ },
27
+ "event_ts": {
28
+ "$ref": "#/definitions/timestamp"
29
+ },
30
+ "has_pins": {
31
+ "type": "boolean"
32
+ },
33
+ "item": {
34
+ "$ref": "#/definitions/pin_item"
35
+ },
36
+ "type": {
37
+ "const": "pin_removed"
38
+ },
39
+ "user": {
40
+ "$ref": "#/definitions/user_id"
41
+ }
42
+ },
43
+ "example": {
44
+ "channel_id": "C02ELGNBH",
45
+ "event_ts": "1360782804.083113",
46
+ "has_pins": false,
47
+ "item": {
48
+ },
49
+ "type": "pin_removed",
50
+ "user": "U024BE7LH"
51
+ }
52
+ }
12
53
  },
13
54
  "schema": {
14
- "$schema": "http://json-schema.org/draft-07/schema",
15
- "definitions": {
55
+ "type": "object",
56
+ "description": "learn more: https://api.slack.com/events/pin_removed",
57
+ "properties": {
16
58
  "channel_id": {
17
- "type": "string"
59
+ "$ref": "#/definitions/channel_id"
18
60
  },
19
- "timestamp": {
20
- "type": "string"
61
+ "event_ts": {
62
+ "$ref": "#/definitions/timestamp"
21
63
  },
22
- "pin_item": {
23
- "type": "object",
24
- "description": "definition snipped. learn more: https://api.slack.com/events/pin_removed",
25
- "properties": {
26
- }
64
+ "has_pins": {
65
+ "type": "boolean"
27
66
  },
28
- "user_id": {
29
- "type": "string"
67
+ "item": {
68
+ "$ref": "#/definitions/pin_item"
30
69
  },
31
- "pin_removed": {
32
- "type": "object",
33
- "description": "learn more: https://api.slack.com/events/pin_removed",
34
- "properties": {
35
- "channel_id": {
36
- "$ref": "#/definitions/channel_id"
37
- },
38
- "event_ts": {
39
- "$ref": "#/definitions/timestamp"
40
- },
41
- "has_pins": {
42
- "type": "boolean"
43
- },
44
- "item": {
45
- "$ref": "#/definitions/pin_item"
46
- },
47
- "type": {
48
- "const": "pin_removed"
49
- },
50
- "user": {
51
- "$ref": "#/definitions/user_id"
52
- }
53
- },
54
- "example": {
55
- "channel_id": "C02ELGNBH",
56
- "event_ts": "1360782804.083113",
57
- "has_pins": false,
58
- "item": {
59
- },
60
- "type": "pin_removed",
61
- "user": "U024BE7LH"
62
- }
70
+ "type": {
71
+ "const": "pin_removed"
72
+ },
73
+ "user": {
74
+ "$ref": "#/definitions/user_id"
63
75
  }
76
+ },
77
+ "example": {
78
+ "channel_id": "C02ELGNBH",
79
+ "event_ts": "1360782804.083113",
80
+ "has_pins": false,
81
+ "item": {
82
+ },
83
+ "type": "pin_removed",
84
+ "user": "U024BE7LH"
64
85
  }
65
86
  },
66
87
  "compatibility": [
@@ -1,87 +1,108 @@
1
1
  {
2
2
  "url": "https://api.slack.com/events/reaction_added",
3
- "type": "reaction_added",
4
- "response": {
5
- "event_ts": "1360782804.083113",
6
- "item": {
7
- "type": "message",
8
- "channel": "C0G9QF9GZ",
9
- "ts": "1360782400.498405"
3
+ "event": "reaction_added",
4
+ "sub_schemas": {
5
+ "timestamp": {
6
+ "type": "string"
10
7
  },
11
- "item_user": "U0G9QF9C6",
12
- "reaction": "thumbsup",
13
- "type": "reaction_added",
14
- "user": "U024BE7LH"
8
+ "channel_id": {
9
+ "type": "string"
10
+ },
11
+ "reaction_item_type": {
12
+ "type": "string"
13
+ },
14
+ "reaction_item": {
15
+ "type": "object",
16
+ "description": "(defined by script)",
17
+ "properties": {
18
+ "channel": {
19
+ "$ref": "#/definitions/channel_id"
20
+ },
21
+ "ts": {
22
+ "$ref": "#/definitions/timestamp"
23
+ },
24
+ "type": {
25
+ "$ref": "#/definitions/reaction_item_type"
26
+ }
27
+ }
28
+ },
29
+ "user_id": {
30
+ "type": "string"
31
+ },
32
+ "emoji_name": {
33
+ "type": "string"
34
+ },
35
+ "reaction_added": {
36
+ "type": "object",
37
+ "description": "learn more: https://api.slack.com/events/reaction_added",
38
+ "properties": {
39
+ "event_ts": {
40
+ "$ref": "#/definitions/timestamp"
41
+ },
42
+ "item": {
43
+ "$ref": "#/definitions/reaction_item"
44
+ },
45
+ "item_user": {
46
+ "$ref": "#/definitions/user_id"
47
+ },
48
+ "reaction": {
49
+ "$ref": "#/definitions/emoji_name"
50
+ },
51
+ "type": {
52
+ "const": "reaction_added"
53
+ },
54
+ "user": {
55
+ "$ref": "#/definitions/user_id"
56
+ }
57
+ },
58
+ "example": {
59
+ "event_ts": "1360782804.083113",
60
+ "item": {
61
+ "type": "message",
62
+ "channel": "C0G9QF9GZ",
63
+ "ts": "1360782400.498405"
64
+ },
65
+ "item_user": "U0G9QF9C6",
66
+ "reaction": "thumbsup",
67
+ "type": "reaction_added",
68
+ "user": "U024BE7LH"
69
+ }
70
+ }
15
71
  },
16
72
  "schema": {
17
- "$schema": "http://json-schema.org/draft-07/schema",
18
- "definitions": {
19
- "timestamp": {
20
- "type": "string"
73
+ "type": "object",
74
+ "description": "learn more: https://api.slack.com/events/reaction_added",
75
+ "properties": {
76
+ "event_ts": {
77
+ "$ref": "#/definitions/timestamp"
21
78
  },
22
- "channel_id": {
23
- "type": "string"
79
+ "item": {
80
+ "$ref": "#/definitions/reaction_item"
24
81
  },
25
- "reaction_item_type": {
26
- "type": "string"
82
+ "item_user": {
83
+ "$ref": "#/definitions/user_id"
27
84
  },
28
- "reaction_item": {
29
- "type": "object",
30
- "description": "(defined by script)",
31
- "properties": {
32
- "channel": {
33
- "$ref": "#/definitions/channel_id"
34
- },
35
- "ts": {
36
- "$ref": "#/definitions/timestamp"
37
- },
38
- "type": {
39
- "$ref": "#/definitions/reaction_item_type"
40
- }
41
- }
42
- },
43
- "user_id": {
44
- "type": "string"
85
+ "reaction": {
86
+ "$ref": "#/definitions/emoji_name"
45
87
  },
46
- "emoji_name": {
47
- "type": "string"
88
+ "type": {
89
+ "const": "reaction_added"
48
90
  },
49
- "reaction_added": {
50
- "type": "object",
51
- "description": "learn more: https://api.slack.com/events/reaction_added",
52
- "properties": {
53
- "event_ts": {
54
- "$ref": "#/definitions/timestamp"
55
- },
56
- "item": {
57
- "$ref": "#/definitions/reaction_item"
58
- },
59
- "item_user": {
60
- "$ref": "#/definitions/user_id"
61
- },
62
- "reaction": {
63
- "$ref": "#/definitions/emoji_name"
64
- },
65
- "type": {
66
- "const": "reaction_added"
67
- },
68
- "user": {
69
- "$ref": "#/definitions/user_id"
70
- }
71
- },
72
- "example": {
73
- "event_ts": "1360782804.083113",
74
- "item": {
75
- "type": "message",
76
- "channel": "C0G9QF9GZ",
77
- "ts": "1360782400.498405"
78
- },
79
- "item_user": "U0G9QF9C6",
80
- "reaction": "thumbsup",
81
- "type": "reaction_added",
82
- "user": "U024BE7LH"
83
- }
91
+ "user": {
92
+ "$ref": "#/definitions/user_id"
84
93
  }
94
+ },
95
+ "example": {
96
+ "event_ts": "1360782804.083113",
97
+ "item": {
98
+ "type": "message",
99
+ "channel": "C0G9QF9GZ",
100
+ "ts": "1360782400.498405"
101
+ },
102
+ "item_user": "U0G9QF9C6",
103
+ "reaction": "thumbsup",
104
+ "type": "reaction_added",
105
+ "user": "U024BE7LH"
85
106
  }
86
107
  },
87
108
  "compatibility": [
@@ -1,87 +1,108 @@
1
1
  {
2
2
  "url": "https://api.slack.com/events/reaction_removed",
3
- "type": "reaction_removed",
4
- "response": {
5
- "event_ts": "1360782804.083113",
6
- "item": {
7
- "type": "message",
8
- "channel": "C0G9QF9GZ",
9
- "ts": "1360782400.498405"
3
+ "event": "reaction_removed",
4
+ "sub_schemas": {
5
+ "timestamp": {
6
+ "type": "string"
10
7
  },
11
- "item_user": "U0G9QF9C6",
12
- "reaction": "thumbsup",
13
- "type": "reaction_removed",
14
- "user": "U024BE7LH"
8
+ "channel_id": {
9
+ "type": "string"
10
+ },
11
+ "reaction_item_type": {
12
+ "type": "string"
13
+ },
14
+ "reaction_item": {
15
+ "type": "object",
16
+ "description": "(defined by script)",
17
+ "properties": {
18
+ "channel": {
19
+ "$ref": "#/definitions/channel_id"
20
+ },
21
+ "ts": {
22
+ "$ref": "#/definitions/timestamp"
23
+ },
24
+ "type": {
25
+ "$ref": "#/definitions/reaction_item_type"
26
+ }
27
+ }
28
+ },
29
+ "user_id": {
30
+ "type": "string"
31
+ },
32
+ "emoji_name": {
33
+ "type": "string"
34
+ },
35
+ "reaction_removed": {
36
+ "type": "object",
37
+ "description": "learn more: https://api.slack.com/events/reaction_removed",
38
+ "properties": {
39
+ "event_ts": {
40
+ "$ref": "#/definitions/timestamp"
41
+ },
42
+ "item": {
43
+ "$ref": "#/definitions/reaction_item"
44
+ },
45
+ "item_user": {
46
+ "$ref": "#/definitions/user_id"
47
+ },
48
+ "reaction": {
49
+ "$ref": "#/definitions/emoji_name"
50
+ },
51
+ "type": {
52
+ "const": "reaction_removed"
53
+ },
54
+ "user": {
55
+ "$ref": "#/definitions/user_id"
56
+ }
57
+ },
58
+ "example": {
59
+ "event_ts": "1360782804.083113",
60
+ "item": {
61
+ "type": "message",
62
+ "channel": "C0G9QF9GZ",
63
+ "ts": "1360782400.498405"
64
+ },
65
+ "item_user": "U0G9QF9C6",
66
+ "reaction": "thumbsup",
67
+ "type": "reaction_removed",
68
+ "user": "U024BE7LH"
69
+ }
70
+ }
15
71
  },
16
72
  "schema": {
17
- "$schema": "http://json-schema.org/draft-07/schema",
18
- "definitions": {
19
- "timestamp": {
20
- "type": "string"
73
+ "type": "object",
74
+ "description": "learn more: https://api.slack.com/events/reaction_removed",
75
+ "properties": {
76
+ "event_ts": {
77
+ "$ref": "#/definitions/timestamp"
21
78
  },
22
- "channel_id": {
23
- "type": "string"
79
+ "item": {
80
+ "$ref": "#/definitions/reaction_item"
24
81
  },
25
- "reaction_item_type": {
26
- "type": "string"
82
+ "item_user": {
83
+ "$ref": "#/definitions/user_id"
27
84
  },
28
- "reaction_item": {
29
- "type": "object",
30
- "description": "(defined by script)",
31
- "properties": {
32
- "channel": {
33
- "$ref": "#/definitions/channel_id"
34
- },
35
- "ts": {
36
- "$ref": "#/definitions/timestamp"
37
- },
38
- "type": {
39
- "$ref": "#/definitions/reaction_item_type"
40
- }
41
- }
42
- },
43
- "user_id": {
44
- "type": "string"
85
+ "reaction": {
86
+ "$ref": "#/definitions/emoji_name"
45
87
  },
46
- "emoji_name": {
47
- "type": "string"
88
+ "type": {
89
+ "const": "reaction_removed"
48
90
  },
49
- "reaction_removed": {
50
- "type": "object",
51
- "description": "learn more: https://api.slack.com/events/reaction_removed",
52
- "properties": {
53
- "event_ts": {
54
- "$ref": "#/definitions/timestamp"
55
- },
56
- "item": {
57
- "$ref": "#/definitions/reaction_item"
58
- },
59
- "item_user": {
60
- "$ref": "#/definitions/user_id"
61
- },
62
- "reaction": {
63
- "$ref": "#/definitions/emoji_name"
64
- },
65
- "type": {
66
- "const": "reaction_removed"
67
- },
68
- "user": {
69
- "$ref": "#/definitions/user_id"
70
- }
71
- },
72
- "example": {
73
- "event_ts": "1360782804.083113",
74
- "item": {
75
- "type": "message",
76
- "channel": "C0G9QF9GZ",
77
- "ts": "1360782400.498405"
78
- },
79
- "item_user": "U0G9QF9C6",
80
- "reaction": "thumbsup",
81
- "type": "reaction_removed",
82
- "user": "U024BE7LH"
83
- }
91
+ "user": {
92
+ "$ref": "#/definitions/user_id"
84
93
  }
94
+ },
95
+ "example": {
96
+ "event_ts": "1360782804.083113",
97
+ "item": {
98
+ "type": "message",
99
+ "channel": "C0G9QF9GZ",
100
+ "ts": "1360782400.498405"
101
+ },
102
+ "item_user": "U0G9QF9C6",
103
+ "reaction": "thumbsup",
104
+ "type": "reaction_removed",
105
+ "user": "U024BE7LH"
85
106
  }
86
107
  },
87
108
  "compatibility": [