Sha256: 85b3901fc099369306eda8907fa39991cc5c9f74f567fd60703d43af5fff80d0

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

{
  "$schema": "http://json-schema.org/draft-07/schema",
  "definitions": {
    "channel_id": {
      "type": "string"
    },
    "timestamp": {
      "type": "string"
    },
    "user_id": {
      "type": "string"
    },
    "message.groups": {
      "type": "object",
      "description": "learn more: https://api.slack.com/events/message.groups",
      "properties": {
        "channel": {
          "$ref": "#/definitions/channel_id"
        },
        "channel_type": {
          "const": "group"
        },
        "event_ts": {
          "$ref": "#/definitions/timestamp"
        },
        "text": {
          "type": "string"
        },
        "ts": {
          "$ref": "#/definitions/timestamp"
        },
        "type": {
          "const": "message"
        },
        "user": {
          "$ref": "#/definitions/user_id"
        }
      },
      "example": {
        "channel": "G024BE91L",
        "channel_type": "group",
        "event_ts": "1355517523.000005",
        "text": "One cannot programmatically detect the difference between `message.mpim` and `message.groups`.",
        "ts": "1355517523.000005",
        "type": "message",
        "user": "U2147483697"
      }
    }
  }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
slack_resources-0.1.9 lib/slack_resources/resources/event_api/schemas/message.groups.json
slack_resources-0.1.8 lib/slack_resources/resources/event_api/schemas/message.groups.json
slack_resources-0.1.7 lib/slack_resources/resources/event_api/schemas/message.groups.json
slack_resources-0.1.6 lib/slack_resources/resources/event_api/schemas/message.groups.json
slack_resources-0.1.5 lib/slack_resources/resources/event_api/schemas/message.groups.json
slack_resources-0.1.4 lib/slack_resources/resources/event_api/schemas/message.groups.json
slack_resources-0.0.0 lib/slack_resources/resources/event_api/schemas/message.groups.json