{

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

}