diff --git a/LCS/MessageBus/include/MessageBus/Message.h b/LCS/MessageBus/include/MessageBus/Message.h
index 85641507e18db7c3050e33fd39769a5a09f61f46..9b8266520d82f2891cf7877cd8eb31a0bee1dd59 100644
--- a/LCS/MessageBus/include/MessageBus/Message.h
+++ b/LCS/MessageBus/include/MessageBus/Message.h
@@ -42,11 +42,19 @@ class Message
 
   // Construct a message
   Message(
+    // Name of the service or process producing this message
     const std::string &from,
+
+    // End-user responsible for this request (if applicable)
     const std::string &forUser,
+
+    // Human-readable summary describing this request
     const std::string &summary,
 
+    // Service to send this message to
     const std::string &toService,
+
+    // Version of the protocol we're using to describe the payload
     const std::string &toVersion
   );