{

"$schema": "http://json-schema.org/draft-07/schema",
"definitions": {
  "team_domain_change": {
    "type": "object",
    "description": "learn more: https://api.slack.com/events/team_domain_change",
    "properties": {
      "domain": {
        "type": "string"
      },
      "type": {
        "const": "team_domain_change"
      },
      "url": {
        "type": "string"
      }
    },
    "example": {
      "domain": "my",
      "type": "team_domain_change",
      "url": "https://my.slack.com"
    }
  }
}

}