{

"$schema": "http://json-schema.org/draft-07/schema",
"definitions": {
  "channel_id": {
    "type": "string"
  },
  "channel_left": {
    "type": "object",
    "description": "learn more: https://api.slack.com/events/channel_left",
    "properties": {
      "channel": {
        "$ref": "#/definitions/channel_id"
      },
      "type": {
        "const": "channel_left"
      }
    },
    "example": {
      "channel": "C024BE91L",
      "type": "channel_left"
    }
  }
}

}