Sha256: c7fe3472c420846355a3b6684f0e215f6441f11adc2ab524320f93c6ef081b87
Contents?: true
Size: 831 Bytes
Versions: 11
Compression:
Stored size: 831 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_created": { "type": "object", "description": "learn more: https://api.slack.com/events/file_created", "properties": { "file": { "$ref": "#/definitions/file" }, "file_id": { "$ref": "#/definitions/file_id" }, "type": { "const": "file_created" } }, "example": { "file": { "id": "F2147483862" }, "file_id": "F2147483862", "type": "file_created" } } } }
Version data entries
11 entries across 11 versions & 1 rubygems