Sha256: dc51dde6771729bc71260931fa9d38565d89c719f9efc1683bd56951a944a95e
Contents?: true
Size: 1.12 KB
Versions: 11
Compression:
Stored size: 1.12 KB
Contents
{ "$schema": "http://json-schema.org/draft-07/schema", "definitions": { "comment": { "type": "object", "description": "definition snipped. learn more: https://api.slack.com/events/file_comment_added", "properties": { } }, "file_id": { "type": "string" }, "file": { "type": "object", "description": "(defined by script)", "properties": { "id": { "$ref": "#/definitions/file_id" } } }, "file_comment_added": { "type": "object", "description": "learn more: https://api.slack.com/events/file_comment_added", "properties": { "comment": { "$ref": "#/definitions/comment" }, "file": { "$ref": "#/definitions/file" }, "file_id": { "$ref": "#/definitions/file_id" }, "type": { "const": "file_comment_added" } }, "example": { "comment": { }, "file": { "id": "F2147483862" }, "file_id": "F2147483862", "type": "file_comment_added" } } } }
Version data entries
11 entries across 11 versions & 1 rubygems