{

"$schema": "http://json-schema.org/draft-07/schema",
"definitions": {
  "channel_id": {
    "type": "string"
  },
  "timestamp": {
    "type": "string"
  },
  "user_id": {
    "type": "string"
  },
  "message.app_home": {
    "type": "object",
    "description": "learn more: https://api.slack.com/events/message.app_home",
    "properties": {
      "channel": {
        "$ref": "#/definitions/channel_id"
      },
      "channel_type": {
        "const": "app_home"
      },
      "event_ts": {
        "$ref": "#/definitions/timestamp"
      },
      "text": {
        "type": "string"
      },
      "ts": {
        "$ref": "#/definitions/timestamp"
      },
      "type": {
        "const": "message"
      },
      "user": {
        "$ref": "#/definitions/user_id"
      }
    },
    "example": {
      "channel": "D0PNCRP9N",
      "channel_type": "app_home",
      "event_ts": "1525215129.000001",
      "text": "How many cats did we herd yesterday?",
      "ts": "1525215129.000001",
      "type": "message",
      "user": "U061F7AUR"
    }
  }
}

}