diff --git a/openedx/core/openapi.py b/openedx/core/openapi.py
index c7c9a162e4d6f8e1b9b15b88809496b8a235b4aa..d4ab94a08d41b1ba7de272925f045ab48be5e288 100644
--- a/openedx/core/openapi.py
+++ b/openedx/core/openapi.py
@@ -8,12 +8,12 @@ from drf_yasg import openapi
 
 schema_view = get_schema_view(
     openapi.Info(
-        title="Snippets API",
-        default_version='v1',
-        description="Test description",
-        terms_of_service="https://www.google.com/policies/terms/",
-        contact=openapi.Contact(email="contact@snippets.local"),
-        license=openapi.License(name="BSD License"),
+        title="Open edX API",
+        default_version="v1",
+        description="APIs for access to Open edX information",
+        #terms_of_service="https://www.google.com/policies/terms/",         # TODO: Do we have these?
+        contact=openapi.Contact(email="oscm@edx.org"),
+        #license=openapi.License(name="BSD License"),                       # TODO: What does this mean?
     ),
     public=True,
     permission_classes=(permissions.AllowAny,),