diff --git a/src/app/components/zoom_room_checked_in/schema.py b/src/app/components/zoom_room_checked_in/schema.py
index cdad9b398efb8e5f24f0eab2c2553169c4060846..cc209353d57e42871057706e01cf7e146496c81e 100644
--- a/src/app/components/zoom_room_checked_in/schema.py
+++ b/src/app/components/zoom_room_checked_in/schema.py
@@ -38,7 +38,7 @@ class CheckedInWebHook(BaseWebhookEvent):
 
     payload: Payload = Field(
         ...,
-        description="Contains a property with the plainToken value, the string to hash.",
+        description="Contains all the information about the Zoom Room that checked in.",
     )
 
 
diff --git a/src/app/components/zoom_room_checked_out/schema.py b/src/app/components/zoom_room_checked_out/schema.py
index 66f6bc08abaddd6ee3e541e72303f7f5db580c5e..cb6393397dfa423f2a04a673c960cc20639ea266 100644
--- a/src/app/components/zoom_room_checked_out/schema.py
+++ b/src/app/components/zoom_room_checked_out/schema.py
@@ -30,7 +30,7 @@ class Payload(BaseModel):
 
 
 class CheckedOutWebHook(BaseWebhookEvent):
-    """This is the schema for the request body of the webhook for the zoomroom.checked_in event.
+    """This is the schema for the request body of the webhook for the zoomroom.checked_out event.
 
     Args:
         WebhookEvent (WebhookEvent): The base webhook model for the schema.
@@ -38,7 +38,7 @@ class CheckedOutWebHook(BaseWebhookEvent):
 
     payload: Payload = Field(
         ...,
-        description="Contains a property with the plainToken value, the string to hash.",
+        description="Contains all the information about the Zoom Room that checked out.",
     )