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