{
  "asyncapi": "2.6.0",
  "info": {
    "title": "Example Chat",
    "version": "1.0.0",
    "description": "Tiny AsyncAPI example for WebSocket import."
  },
  "servers": {
    "production": {
      "url": "wss://api.example.com/ws",
      "protocol": "wss"
    }
  },
  "channels": {
    "chat": {
      "subscribe": {
        "summary": "Receive chat messages",
        "message": {
          "payload": {
            "type": "object"
          }
        }
      },
      "publish": {
        "summary": "Send a chat message",
        "message": {
          "payload": {
            "type": "object"
          }
        }
      }
    }
  }
}
