diff --git a/docs/docs.go b/docs/docs.go
index b498e6d63e5a425ce81d82d31b1bb7c0acf04c4e..53551313022c11650b29700433fbe74ab2b3b930 100644
--- a/docs/docs.go
+++ b/docs/docs.go
@@ -2729,9 +2729,7 @@ const docTemplate = `{
             "description": "Information that should be available when you add a course",
             "type": "object",
             "required": [
-                "abbreviation",
                 "email",
-                "lecturer",
                 "name"
             ],
             "properties": {
@@ -2748,10 +2746,6 @@ const docTemplate = `{
                     "type": "string",
                     "example": "someone@example.com"
                 },
-                "lecturer": {
-                    "description": "Course Lecturer",
-                    "type": "string"
-                },
                 "majabbr": {
                     "description": "Course Major Abbreviation",
                     "type": "string"
diff --git a/docs/swagger.json b/docs/swagger.json
index 35bc431aa7c6d69fd976b5ae111e4f89433befb6..1ac89a2a1a878a8494d4a79cea11328b62692ba1 100644
--- a/docs/swagger.json
+++ b/docs/swagger.json
@@ -2721,9 +2721,7 @@
             "description": "Information that should be available when you add a course",
             "type": "object",
             "required": [
-                "abbreviation",
                 "email",
-                "lecturer",
                 "name"
             ],
             "properties": {
@@ -2740,10 +2738,6 @@
                     "type": "string",
                     "example": "someone@example.com"
                 },
-                "lecturer": {
-                    "description": "Course Lecturer",
-                    "type": "string"
-                },
                 "majabbr": {
                     "description": "Course Major Abbreviation",
                     "type": "string"
diff --git a/docs/swagger.yaml b/docs/swagger.yaml
index 57767453f07d3bc013f4b6df5746e0e9e6afbb92..83c7b9731375d19f28d0a6f5912cb80018776e5a 100644
--- a/docs/swagger.yaml
+++ b/docs/swagger.yaml
@@ -102,9 +102,6 @@ definitions:
         description: Contributor Email
         example: someone@example.com
         type: string
-      lecturer:
-        description: Course Lecturer
-        type: string
       majabbr:
         description: Course Major Abbreviation
         type: string
@@ -118,9 +115,7 @@ definitions:
         description: Web Token that was appended to the link
         type: string
     required:
-    - abbreviation
     - email
-    - lecturer
     - name
     type: object
   faculty.AddFacultyRequestPayload: