diff --git a/build.gradle.kts b/build.gradle.kts
index 1320a8b998d279113286dfdd117c4df1cb466809..b99bdcb496f7145d876d1b4d5be5bfcd44908cf4 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -6,7 +6,7 @@ import org.openapitools.generator.gradle.plugin.tasks.GenerateTask
 import org.springframework.boot.gradle.tasks.bundling.BootJar
 
 group = "nl.tudelft.labrador"
-version = "1.2.0-SNAPSHOT2"
+version = "1.2.0-SNAPSHOT3"
 
 val javaVersion = JavaVersion.VERSION_11
 
diff --git a/oa-spec-labracore.json b/oa-spec-labracore.json
index 7e2743fc2786879d6aeeb2e54cf2ca824d0da1cf..275487790684295ba7387552bd8e50c99f464f51 100644
--- a/oa-spec-labracore.json
+++ b/oa-spec-labracore.json
@@ -1 +1 @@
-{"openapi":"3.0.1","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"http://localhost:8082","description":"Generated server url"}],"paths":{"/api/student-group/{divisionId}/division":{"get":{"tags":["student-group-controller"],"operationId":"getAllGroupsInDivision","parameters":[{"name":"divisionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}}}}}},"/api/room/{id}":{"get":{"tags":["room-controller"],"operationId":"getRoomById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RoomDetailsDTO"}}}}}},"delete":{"tags":["room-controller"],"operationId":"deleteRoom","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["room-controller"],"operationId":"patchRoom","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoomPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/building/{id}":{"get":{"tags":["building-controller"],"operationId":"getBuildingById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BuildingDetailsDTO"}}}}}},"delete":{"tags":["building-controller"],"operationId":"deleteBuilding","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["building-controller"],"operationId":"patchBuilding","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BuildingPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{personId}/role/{editionId}/edition":{"get":{"tags":["authorization-controller"],"operationId":"hasRoleInEdition","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition/by-ids":{"get":{"tags":["edition-controller"],"operationId":"getEditionsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}}},"/api/grade":{"post":{"tags":["grade-controller"],"operationId":"addGrade","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GradeCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/api-key/disable/{apiKey}":{"put":{"tags":["api-key-controller"],"operationId":"disableAPIKey","parameters":[{"name":"apiKey","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/building/by-ids":{"get":{"tags":["building-controller"],"operationId":"getAllBuildingsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/BuildingDetailsDTO"}}}}}}}},"/api/division/{moduleId}/import/clusters/{extra}":{"post":{"tags":["module-division-controller"],"operationId":"importDivisionsFromClusters","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"extra","in":"path","required":true,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"default response"}}}},"/api/cluster/{id}/remove":{"delete":{"tags":["cluster-controller"],"operationId":"removePeopleFromCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/person/by-cohort/{cohortId}":{"get":{"tags":["person-controller"],"operationId":"getPeopleByCohort","parameters":[{"name":"cohortId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/edition":{"get":{"tags":["edition-controller"],"operationId":"getAllEditions","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}},"post":{"tags":["edition-controller"],"description":"Adds a course Edition","operationId":"addEdition","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EditionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition-collection/by-ids":{"get":{"tags":["edition-collection-controller"],"operationId":"getEditionCollectionsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionCollectionDetailsDTO"}}}}}}}},"/api/edition/{editionId}/modules":{"get":{"tags":["edition-controller"],"description":"Gets all modules of an edition","operationId":"getEditionModules","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleSummaryDTO"}}}}}}}},"/api/assignment/{moduleId}/all":{"get":{"tags":["assignment-controller"],"operationId":"getAllAssignmentsByModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}}}}}}}},"/api/auth/{personId}/specific-role/{editionId}/edition":{"get":{"tags":["authorization-controller"],"operationId":"hasSpecificRoleInEdition","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"type","in":"query","required":true,"schema":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/api-key":{"get":{"tags":["api-key-controller"],"operationId":"getAllAPIKeys","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/APIKeySummaryDTO"}}}}}}},"post":{"tags":["api-key-controller"],"operationId":"addAPIKey","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/APIKeyCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/APIKeySecretDetailsDTO"}}}}}}},"/api/edition/active-or-taught-by/{personId}/page":{"get":{"tags":["edition-controller"],"operationId":"getEditionsPageActiveOrTaughtBy","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"pageable","in":"query","required":true,"schema":{"$ref":"#/components/schemas/LCPageable"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageEditionDetailsDTO"}}}}}}},"/api/student-group/{id}/add/member/{memId}":{"post":{"tags":["student-group-controller"],"operationId":"addMemberToGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"memId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/building":{"get":{"tags":["building-controller"],"operationId":"getAllBuildings","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/BuildingSummaryDTO"}}}}}}},"post":{"tags":["building-controller"],"operationId":"addBuilding","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BuildingCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition/{id}/block/person/{personId}":{"delete":{"tags":["edition-controller"],"operationId":"blockPersonInEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/division/{id}/add":{"post":{"tags":["module-division-controller"],"operationId":"addPersonToDivision","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"string"}}}},"responses":{"200":{"description":"default response"}}}},"/api/student-group/by-person/{personId}":{"get":{"tags":["student-group-controller"],"operationId":"getGroupsForPerson","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}}}}}},"/api/module":{"post":{"tags":["module-controller"],"operationId":"addModule","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModuleCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/student-group/{id}/add/members":{"post":{"tags":["student-group-controller"],"operationId":"addGroupMembers","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"usernames","in":"query","required":true,"schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"default response"}}}},"/api/program/{personId}/all-relevant":{"get":{"tags":["program-controller"],"operationId":"getAllRelevantPrograms","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProgramSummaryDTO"}}}}}}}},"/api/program":{"post":{"tags":["program-controller"],"operationId":"addProgram","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProgramCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition-collection/{id}":{"get":{"tags":["edition-collection-controller"],"operationId":"getEditionCollectionById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/EditionCollectionDetailsDTO"}}}}}},"delete":{"tags":["edition-collection-controller"],"operationId":"deleteEditionCollection","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["edition-collection-controller"],"operationId":"patchEditionCollection","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EditionCollectionPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/student-group/{moduleId}/import":{"post":{"tags":["student-group-controller"],"operationId":"importGroupsToModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupImportDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"type":"string"}}}}}}}},"/api/student-group/{id}":{"get":{"tags":["student-group-controller"],"operationId":"viewGroupDetails","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/StudentGroupDetailsDTO"}}}}}},"delete":{"tags":["student-group-controller"],"operationId":"deleteStudentGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["student-group-controller"],"operationId":"patchGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StudentGroupPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{personId}/manager-anywhere":{"get":{"tags":["authorization-controller"],"operationId":"hasManagerRoleInAnyCourse","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/2fa/totp/key-info":{"get":{"tags":["totp-controller"],"operationId":"getTOTPKeyInfo","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TOTPKeyInfoDetailsDTO"}}}}}}},"/api/person/{id}":{"get":{"tags":["person-controller"],"operationId":"getPersonById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDetailsDTO"}}}}}},"patch":{"tags":["person-controller"],"operationId":"patchPerson","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition/actively-assisted-by-authenticated":{"get":{"tags":["edition-controller"],"operationId":"getAllEditionsCurrentlyAssistedBy","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}}}}}},"/api/auth/{personId}/manage-edition/{editionId}":{"get":{"tags":["authorization-controller"],"operationId":"canManageEdition","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/division/{id}":{"get":{"tags":["module-division-controller"],"operationId":"getPeopleInDivision","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ModuleDivisionDetailsDTO"}}}}}},"delete":{"tags":["module-division-controller"],"operationId":"deleteModuleDivision","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/edition/{editionId}/add/tas":{"post":{"tags":["edition-controller"],"operationId":"addTAsToEdition","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}},"responses":{"200":{"description":"default response"}}}},"/api/permission":{"get":{"tags":["permission-controller"],"operationId":"getAllPermissions","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PermissionSummaryDTO"}}}}}}}},"/api/cluster/{id}":{"get":{"tags":["cluster-controller"],"operationId":"getClusterById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ClusterDetailsDTO"}}}}}},"delete":{"tags":["cluster-controller"],"operationId":"deleteCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["cluster-controller"],"operationId":"patchCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClusterPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/db/submissions":{"get":{"tags":["db-loader-controller"],"operationId":"getAllSubmissionsInDB","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionSummaryDTO"}}}}}}}},"/api/program/{program}":{"get":{"tags":["program-controller"],"operationId":"getProgramById","parameters":[{"name":"program","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ProgramDetailsDTO"}}}}}},"patch":{"tags":["program-controller"],"operationId":"patchProgram","parameters":[{"name":"program","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProgramPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/person":{"post":{"tags":["person-controller"],"operationId":"addPerson","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/submission/by-assignment/{assignmentId}":{"get":{"tags":["submission-controller"],"operationId":"getSubmissionsByAssignment","parameters":[{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}}},"/api/auth/{person}/staff-in-any-current-edition":{"get":{"tags":["authorization-controller"],"operationId":"hasStaffRoleInAnyCurrentEdition","parameters":[{"name":"person","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/person/search/display-name/by-program/{programId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByProgramAndDisplayNameContaining","parameters":[{"name":"displayName","in":"query","required":true,"schema":{"type":"string"}},{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/session/single":{"post":{"tags":["session-controller"],"operationId":"addSingleSession","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SingleSessionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{person}/staff-in-any-edition":{"get":{"tags":["authorization-controller"],"operationId":"hasStaffRoleInAnyEdition","parameters":[{"name":"person","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/submission/{id}":{"get":{"tags":["submission-controller"],"operationId":"getSubmissionById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SubmissionMemberDetailsDTO"}}}}}},"delete":{"tags":["submission-controller"],"operationId":"deleteSubmission","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/edition/{editionId}/add/cohort/{cohortId}":{"post":{"tags":["edition-controller"],"operationId":"addCohortToEdition","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"cohortId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/grade/import/{assignmentId}":{"patch":{"tags":["grade-controller"],"operationId":"importGrades","parameters":[{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GradeBatchImportDTO"}}}},"responses":{"200":{"description":"default response"}}}},"/api/db/modules":{"get":{"tags":["db-loader-controller"],"operationId":"getAllModuleAssignmentsAndGroupsInDB","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleAssignmentsGroupsDetailsDTO"}}}}}}}},"/api/room":{"get":{"tags":["room-controller"],"operationId":"getAllRooms","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoomSummaryDTO"}}}}}}},"post":{"tags":["room-controller"],"operationId":"addRoom","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoomCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/cohort/{programId}/program":{"get":{"tags":["cohort-controller"],"operationId":"getAllCohortsInProgram","parameters":[{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CohortSummaryDTO"}}}}}}}},"/api/course/{id}":{"get":{"tags":["course-controller"],"operationId":"getCourseById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CourseDetailsDTO"}}}}}},"delete":{"tags":["course-controller"],"operationId":"deleteCourse","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["course-controller"],"operationId":"patchCourse","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CoursePatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/person/search/number/{number}/by-edition/{editionId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByEditionAndNumberContaining","parameters":[{"name":"number","in":"path","required":true,"schema":{"type":"integer","format":"int32"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/cohort/{id}/import-clusters":{"post":{"tags":["cohort-controller"],"operationId":"importClustersToCohort","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClusterImportDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"type":"string"}}}}}}}},"/api/auth/{personId}/program-manager/{programId}":{"get":{"tags":["authorization-controller"],"operationId":"isProgramManager","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/division/{moduleId}/module":{"get":{"tags":["module-division-controller"],"operationId":"getAllDivisionsInModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionDetailsDTO"}}}}}}}},"/api/student-group/{id}/role/{personId}":{"get":{"tags":["student-group-controller"],"operationId":"getRoleOfMember","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RoleSummaryDTO"}}}}}}},"/api/session/shared":{"post":{"tags":["session-controller"],"operationId":"addSharedSession","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SharedSessionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/assignment/{id}":{"get":{"tags":["assignment-controller"],"operationId":"getAssignmentById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AssignmentModuleDetailsDTO"}}}}}},"delete":{"tags":["assignment-controller"],"operationId":"deleteAssignment","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["assignment-controller"],"operationId":"patchAssignment","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssignmentPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/student-group/{id}/locked":{"get":{"tags":["student-group-controller"],"operationId":"isGroupLocked","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/person/by-ids":{"get":{"tags":["person-controller"],"operationId":"getPeopleById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/edition-collection/by-edition/{edition}":{"get":{"tags":["edition-collection-controller"],"operationId":"getEditionCollectionsByEdition","parameters":[{"name":"edition","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionCollectionSummaryDTO"}}}}}}}},"/api/edition/{editionId}/add/students":{"post":{"tags":["edition-controller"],"operationId":"addStudentsToEdition","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}},"responses":{"200":{"description":"default response"}}}},"/api/auth/{personId}/staff-in-edition/{editionId}":{"get":{"tags":["authorization-controller"],"operationId":"isStaffInEdition","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/course/by-ids":{"get":{"tags":["course-controller"],"operationId":"getAllCoursesById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CourseDetailsDTO"}}}}}}}},"/api/person/search/number/{number}/by-program/{programId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByProgramAndNumberContaining","parameters":[{"name":"number","in":"path","required":true,"schema":{"type":"integer","format":"int32"}},{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/edition/page":{"get":{"tags":["edition-controller"],"operationId":"getEditionsPage","parameters":[{"name":"pageable","in":"query","required":true,"schema":{"$ref":"#/components/schemas/LCPageable"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageEditionDetailsDTO"}}}}}}},"/api/assignment":{"get":{"tags":["assignment-controller"],"operationId":"getAllAssignments","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}}}}}}},"post":{"tags":["assignment-controller"],"operationId":"addAssignment","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssignmentCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/cohort/{id}":{"get":{"tags":["cohort-controller"],"operationId":"getCohortById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CohortDetailsDTO"}}}}}},"delete":{"tags":["cohort-controller"],"operationId":"deleteCohort","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["cohort-controller"],"operationId":"patchCohort","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CohortPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/submission/latest/by-group-and-assignment/{groupId}/{assignmentId}":{"get":{"tags":["submission-controller"],"operationId":"getLatestSubmissionForGroupAndAssignment","parameters":[{"name":"groupId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}},"/api/division/{moduleId}/add/random":{"post":{"tags":["module-division-controller"],"operationId":"addPersonToRandomDivision","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"string"}}}},"responses":{"200":{"description":"default response"}}}},"/api/submission":{"get":{"tags":["submission-controller"],"operationId":"getAllSubmissions","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionMemberDetailsDTO"}}}}}}},"post":{"tags":["submission-controller"],"operationId":"addSubmission","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SubmissionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/api-key/{apiKey}":{"get":{"tags":["api-key-controller"],"operationId":"getAPIKeyById","parameters":[{"name":"apiKey","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/APIKeyDetailsDTO"}}}}}},"patch":{"tags":["api-key-controller"],"operationId":"patchAPIKey","parameters":[{"name":"apiKey","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/APIKeyPatchDTO"}}}},"responses":{"200":{"description":"default response"}}}},"/api/db/people":{"get":{"tags":["db-loader-controller"],"operationId":"getAllPeopleInDB","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/2fa/totp/is-enabled":{"get":{"tags":["totp-controller"],"operationId":"checkTOTPEnabledFor","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/student-group/{id}/leave/{personId}":{"patch":{"tags":["student-group-controller"],"operationId":"removeMemberFromGroup","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/session/{id}":{"delete":{"tags":["session-controller"],"operationId":"deleteSession","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["session-controller"],"operationId":"patchSession","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SessionPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/student-group/{moduleId}/capacity/{capacity}":{"patch":{"tags":["student-group-controller"],"operationId":"changeCapacitiesOfGroupsInModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"capacity","in":"path","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"default response"}}}},"/api/edition/open-for-enrolment":{"get":{"tags":["edition-controller"],"operationId":"getOpenEditions","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}}},"/api/auth/{personId}/course-read/{courseId}":{"get":{"tags":["authorization-controller"],"operationId":"canReadCourse","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"courseId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/student-group/by-person-and-course/{personId}/{courseId}":{"get":{"tags":["student-group-controller"],"operationId":"getGroupsForPersonAndCourse","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"courseId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}}}}}},"/api/person/search/username":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByUsernameContaining","parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/module/by-ids":{"get":{"tags":["module-controller"],"operationId":"getModulesById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDetailsDTO"}}}}}}}},"/api/person/search/display-name":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByDisplayNameContaining","parameters":[{"name":"displayName","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/course":{"get":{"tags":["course-controller"],"operationId":"getAllCourses","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CourseSummaryDTO"}}}}}}},"post":{"tags":["course-controller"],"operationId":"addCourse","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CourseCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/person/{personId}/roles":{"get":{"tags":["person-controller"],"operationId":"getRolesForPerson","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoleEditionDetailsDTO"}}}}}}}},"/api/module/{id}":{"get":{"tags":["module-controller"],"operationId":"getModuleById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ModuleDetailsDTO"}}}}}},"delete":{"tags":["module-controller"],"operationId":"deleteModule","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["module-controller"],"operationId":"patchModule","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModulePatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition/{id}":{"get":{"tags":["edition-controller"],"operationId":"getEditionById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}},"delete":{"tags":["edition-controller"],"operationId":"deleteEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["edition-controller"],"operationId":"patchEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EditionPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/person/external-id/{externalId}":{"get":{"tags":["person-controller"],"operationId":"getPersonByExternalId","parameters":[{"name":"externalId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDetailsDTO"}}}}}}},"/api/student-group/{moduleId}/generate":{"post":{"tags":["student-group-controller"],"operationId":"generateGroupsForModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupGenerateDTO"}}}},"responses":{"200":{"description":"default response"}}}},"/api/2fa/totp/create":{"put":{"tags":["totp-controller"],"operationId":"createTOTPKey","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TOTPKeyInfoDetailsDTO"}}}}}}},"/api/course/edition/{editionId}":{"get":{"tags":["course-controller"],"operationId":"getCourseByEdition","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CourseDetailsDTO"}}}}}}},"/api/person/by-edition-and-role/{editionId}/{roleType}":{"get":{"tags":["person-controller"],"operationId":"getPeopleByEditionAndRoleType","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"roleType","in":"path","required":true,"schema":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/cluster/{id}/import-add":{"patch":{"tags":["cluster-controller"],"operationId":"importAdditionalPeopleToCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}}}}}},"/api/division/{moduleId}/create/{amount}":{"post":{"tags":["module-division-controller"],"operationId":"createDivisionsForParticipants","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"amount","in":"path","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"default response"}}}},"/api/grade/remove-highest/{submissionId}":{"post":{"tags":["grade-controller"],"operationId":"removeHighestGrade","parameters":[{"name":"submissionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/room/by-ids":{"get":{"tags":["room-controller"],"operationId":"getAllRoomsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoomSummaryDTO"}}}}}}}},"/api/student-group":{"post":{"tags":["student-group-controller"],"operationId":"addGroup","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StudentGroupCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/grade/{id}":{"delete":{"tags":["grade-controller"],"operationId":"deleteGrade","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["grade-controller"],"operationId":"patchGrade","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GradePatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/student-group/by-person-and-assignment/{personId}/{assignmentId}":{"get":{"tags":["student-group-controller"],"operationId":"getGroupForPersonAndAssignment","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/StudentGroupDetailsDTO"}}}}}}},"/api/division/{moduleId}/import":{"post":{"tags":["module-division-controller"],"operationId":"importDivisions","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionCreateDTO"}}}}},"responses":{"200":{"description":"default response"}}}},"/api/edition/active-at":{"put":{"tags":["edition-controller"],"operationId":"getAllEditionsActiveAtDate","requestBody":{"content":{"application/json":{"schema":{"type":"string","format":"date-time"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}}}}}},"/api/auth/{personId}/staff-in-course/{courseId}":{"get":{"tags":["authorization-controller"],"operationId":"isStaffInCourse","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"courseId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/person/search/username/by-program/{programId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByProgramAndUsernameContaining","parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string"}},{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/person/search/display-name/by-edition/{editionId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByEditionAndDisplayNameContaining","parameters":[{"name":"displayName","in":"query","required":true,"schema":{"type":"string"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/edition/program/{id}":{"get":{"tags":["edition-controller"],"operationId":"getAllEditionsByCourse","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}}},"/api/2fa/totp/secret":{"get":{"tags":["totp-controller"],"operationId":"getTOTPSecret","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/auth/{personId}/manage-module/{module}":{"get":{"tags":["authorization-controller"],"operationId":"canManageModule","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"module","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition/active-or-taught-by/{personId}":{"get":{"tags":["edition-controller"],"operationId":"getAllEditionsActiveOrTaughtBy","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}}},"/api/student-group/{id}/module-id":{"get":{"tags":["student-group-controller"],"operationId":"getModuleIdFromGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{personId}/manage-assignment/{assignment}":{"get":{"tags":["authorization-controller"],"operationId":"canManageAssignment","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignment","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition-collection":{"post":{"tags":["edition-collection-controller"],"operationId":"addEditionCollection","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EditionCollectionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{personId}/course-manager/{courseId}":{"get":{"tags":["authorization-controller"],"operationId":"isCourseManager","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"courseId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/person/search/number/{number}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByNumberContaining","parameters":[{"name":"number","in":"path","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/submission/can-submit/{groupId}/{assignmentId}":{"get":{"tags":["submission-controller"],"operationId":"canMakeSubmission","parameters":[{"name":"groupId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/session/active-now-and-by-edition":{"get":{"tags":["session-controller"],"operationId":"getActiveSessionsInEditions","parameters":[{"name":"editionIds","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SessionDetailsDTO"}}}}}}}},"/api/student-group/by-ids":{"get":{"tags":["student-group-controller"],"operationId":"getStudentGroupsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupDetailsDTO"}}}}}}}},"/api/cohort":{"get":{"tags":["cohort-controller"],"operationId":"getAllCohorts","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CohortSummaryDTO"}}}}}}},"post":{"tags":["cohort-controller"],"operationId":"addCohort","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CohortCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/cluster/{id}/import-replace":{"patch":{"tags":["cluster-controller"],"operationId":"importReplacementPeopleToCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}}}}}},"/api/submission/by-group-and-assignment/{groupId}/{assignmentId}":{"get":{"tags":["submission-controller"],"operationId":"getSubmissionsForGroupAndAssignment","parameters":[{"name":"groupId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}}},"/api/student-group/{id}/add/member":{"post":{"tags":["student-group-controller"],"operationId":"addSingleMemberToGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"string"}}}},"responses":{"200":{"description":"default response"}}}},"/api/submission/by-ids":{"get":{"tags":["submission-controller"],"operationId":"getAllSubmissionsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}}},"/api/submission/by-module/{moduleId}":{"get":{"tags":["submission-controller"],"operationId":"getSubmissionsByModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}}},"/api/cluster/by-ids":{"get":{"tags":["cluster-controller"],"operationId":"getAllClustersById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ClusterDetailsDTO"}}}}}}}},"/api/person/username/{username}":{"get":{"tags":["person-controller"],"operationId":"getPersonByUsername","parameters":[{"name":"username","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDetailsDTO"}}}}}}},"/api/cluster/{id}/remove/{personId}":{"delete":{"tags":["cluster-controller"],"operationId":"removePersonFromCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/role/by-ids":{"get":{"tags":["role-controller"],"operationId":"getRolesById","parameters":[{"name":"editionIds","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"personIds","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoleDetailsDTO"}}}}}}}},"/api/role/{person}/active-editions":{"get":{"tags":["role-controller"],"operationId":"getPersonRolesInActiveEditions","parameters":[{"name":"person","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoleDetailsDTO"}}}}}}}},"/api/auth/{personId}/cluster-manager/{clusterId}":{"get":{"tags":["authorization-controller"],"operationId":"isClusterManager","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"clusterId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/db/submissions/reviewers":{"get":{"tags":["db-loader-controller"],"operationId":"getReviewersForSubmissionsInDB","parameters":[{"name":"submissions","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoleSummaryDTO"}}}}}}}},"/api/student-group/{moduleId}/allocate":{"post":{"tags":["student-group-controller"],"operationId":"allocateGroupsForModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"integer","format":"int32"}}}},"responses":{"200":{"description":"default response"}}}},"/api/course/program/{programId}":{"get":{"tags":["course-controller"],"operationId":"getAllCoursesByProgram","parameters":[{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CourseSummaryDTO"}}}}}}}},"/api/assignment/by-ids":{"get":{"tags":["assignment-controller"],"operationId":"getAllAssignmentsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentDetailsDTO"}}}}}}}},"/api/role":{"post":{"tags":["role-controller"],"operationId":"addRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoleCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Id"}}}}}}},"/api/role/{personId}/{editionId}":{"patch":{"tags":["role-controller"],"operationId":"patchRole","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RolePatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Id"}}}}}}},"/api/cluster":{"post":{"tags":["cluster-controller"],"operationId":"addCluster","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClusterCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition/{editionId}/roles":{"get":{"tags":["edition-controller"],"operationId":"getEditionParticipants","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RolePersonDetailsDTO"}}}}}}}},"/api/program/{id}":{"delete":{"tags":["program-controller"],"operationId":"deleteProgram","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/student-group/{id}/locked_student/{personId}":{"get":{"tags":["student-group-controller"],"operationId":"isGroupLockedAndRoleStudent","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition/active-during":{"put":{"tags":["edition-controller"],"operationId":"getAllEditionsActiveDuringPeriod","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Period"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}}}}}},"/api/api-key/enable/{apiKey}":{"put":{"tags":["api-key-controller"],"operationId":"enableAPIKey","parameters":[{"name":"apiKey","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/student-group/{moduleId}/module":{"get":{"tags":["student-group-controller"],"operationId":"getAllGroupsInModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}}}}}},"/api/cohort/by-ids":{"get":{"tags":["cohort-controller"],"operationId":"getAllCohortsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CohortDetailsDTO"}}}}}}}},"/api/student-group/by-person-and-module/{personId}/{moduleId}":{"get":{"tags":["student-group-controller"],"operationId":"getGroupForPersonAndModule","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/StudentGroupDetailsDTO"}}}}}}},"/api/edition/{id}/add-participants":{"post":{"tags":["edition-controller"],"operationId":"addParticipantsToEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ParticipantsImportDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"object","additionalProperties":{"type":"array","items":{"type":"string"}}}}}}}}},"/api/edition/{id}/remove/person/{personId}":{"delete":{"tags":["edition-controller"],"operationId":"removePersonFromEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/session/by-ids":{"get":{"tags":["session-controller"],"operationId":"getSessionsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SessionDetailsDTO"}}}}}}}},"/api/program/by-ids":{"get":{"tags":["program-controller"],"operationId":"getAllProgramsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProgramDetailsDTO"}}}}}}}},"/api/course/manager/{managerId}":{"get":{"tags":["course-controller"],"operationId":"getAllCoursesByManager","parameters":[{"name":"managerId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CourseSummaryDTO"}}}}}}}},"/api/auth/{personId}/cohort-manager/{cohortId}":{"get":{"tags":["authorization-controller"],"operationId":"isCohortManager","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"cohortId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition/{id}/archive":{"put":{"tags":["edition-controller"],"operationId":"archiveEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/person/search/username/by-edition/{editionId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByEditionAndUsernameContaining","parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/2fa/totp/confirm":{"post":{"tags":["totp-controller"],"operationId":"confirmTOTPPassword","parameters":[{"name":"password","in":"query","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}}},"components":{"schemas":{"ModuleDivisionSummaryDTO":{"required":["id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"StudentGroupSummaryDTO":{"required":["assignmentsSubmitted","capacity","id","memberUsernames","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"division":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"},"memberUsernames":{"type":"array","items":{"type":"string"}},"assignmentsSubmitted":{"type":"object","additionalProperties":{"type":"boolean"}}}},"Address":{"required":["city","number","street","zipCode"],"type":"object","properties":{"street":{"type":"string"},"number":{"type":"integer","format":"int32"},"numberPostfix":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"}}},"BuildingPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"abbreviation":{"type":"string"},"description":{"type":"string"},"address":{"$ref":"#/components/schemas/Address"},"rooms":{"type":"array","items":{"$ref":"#/components/schemas/RoomIdDTO"}}}},"RoomIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"CohortSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"CourseSummaryDTO":{"required":["code","id","isArchived","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"code":{"type":"string"},"isArchived":{"type":"boolean"}}},"EditionCollectionSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"EditionDetailsDTO":{"required":["cohort","course","editionCollections","endDate","enrollability","id","isArchived","modules","name","sessions","startDate"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"isArchived":{"type":"boolean"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]},"course":{"$ref":"#/components/schemas/CourseSummaryDTO"},"cohort":{"$ref":"#/components/schemas/CohortSummaryDTO"},"modules":{"type":"array","items":{"$ref":"#/components/schemas/ModuleSummaryDTO"}},"editionCollections":{"type":"array","items":{"$ref":"#/components/schemas/EditionCollectionSummaryDTO"}},"sessions":{"type":"array","items":{"$ref":"#/components/schemas/SessionSummaryDTO"}}}},"ModuleSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"SessionSummaryDTO":{"required":["end","id","name","start"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"}}},"GradeCreateDTO":{"required":["isScriptGraded","scheme","score","submission"],"type":"object","properties":{"scheme":{"type":"string","enum":["PASS_FAIL","DUTCH_GRADE","DUTCH_GRADE_1000","SCORE_OUT_OF_10","SCORE_OUT_OF_100","SCORE_OUT_OF_1000","SCORE_OUT_OF_10000","UNLIMITED"]},"score":{"type":"integer","format":"int32"},"isScriptGraded":{"type":"boolean"},"gradedAt":{"type":"string","format":"date-time"},"submission":{"$ref":"#/components/schemas/SubmissionIdDTO"}}},"SubmissionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"BuildingDetailsDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"abbreviation":{"type":"string"},"description":{"type":"string"},"address":{"$ref":"#/components/schemas/Address"},"rooms":{"type":"array","items":{"$ref":"#/components/schemas/RoomSummaryDTO"}}}},"RoomSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"abbreviation":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"description":{"type":"string"}}},"PersonSummaryDTO":{"required":["defaultRole","displayName","externalId","id","number","username"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"externalId":{"type":"string"},"username":{"type":"string"},"displayName":{"type":"string"},"email":{"type":"string"},"defaultRole":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"number":{"type":"integer","format":"int32"},"accountDisabled":{"type":"boolean"}}},"EditionCollectionDetailsDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}},"EditionSummaryDTO":{"required":["endDate","enrollability","id","isArchived","name","startDate"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"isArchived":{"type":"boolean"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]}}},"AssignmentSummaryDTO":{"required":["acceptLateSubmissions","allowedFileTypes","description","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"description":{"$ref":"#/components/schemas/Description"},"deadline":{"type":"string","format":"date-time"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}},"Description":{"type":"object","properties":{"text":{"type":"string"},"fileDirectory":{"type":"string"}}},"APIKeySummaryDTO":{"required":["createdAt","enabled","expiresAt","id","key","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"expiresAt":{"type":"string","format":"date-time"},"enabled":{"type":"boolean"},"key":{"type":"string"}}},"LCPageable":{"required":["page","size"],"type":"object","properties":{"page":{"minimum":0,"type":"integer","format":"int32"},"size":{"minimum":1,"type":"integer","format":"int32"},"sort":{"type":"string"}}},"PageEditionDetailsDTO":{"type":"object","properties":{"totalPages":{"type":"integer","format":"int32"},"totalElements":{"type":"integer","format":"int64"},"size":{"type":"integer","format":"int32"},"content":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}},"number":{"type":"integer","format":"int32"},"sort":{"$ref":"#/components/schemas/Sort"},"pageable":{"$ref":"#/components/schemas/Pageable"},"numberOfElements":{"type":"integer","format":"int32"},"first":{"type":"boolean"},"last":{"type":"boolean"},"empty":{"type":"boolean"}}},"Pageable":{"type":"object","properties":{"offset":{"type":"integer","format":"int64"},"sort":{"$ref":"#/components/schemas/Sort"},"pageNumber":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"paged":{"type":"boolean"},"unpaged":{"type":"boolean"}}},"Sort":{"type":"object","properties":{"sorted":{"type":"boolean"},"unsorted":{"type":"boolean"},"empty":{"type":"boolean"}}},"BuildingSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"abbreviation":{"type":"string"},"description":{"type":"string"},"address":{"$ref":"#/components/schemas/Address"}}},"EditionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"ModuleCreateDTO":{"required":["edition","name"],"type":"object","properties":{"name":{"type":"string"},"edition":{"$ref":"#/components/schemas/EditionIdDTO"}}},"ProgramSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"PersonIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"ProgramCreateDTO":{"required":["director","name"],"type":"object","properties":{"name":{"type":"string"},"director":{"$ref":"#/components/schemas/PersonIdDTO"}}},"EditionCollectionPatchDTO":{"type":"object","properties":{"name":{"type":"string"}}},"GroupImportDTO":{"required":["groups"],"type":"object","properties":{"groups":{"type":"object","additionalProperties":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}}},"Id":{"type":"object","properties":{"personId":{"type":"integer","format":"int64"},"editionId":{"type":"integer","format":"int64"}}},"ModuleIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"RoleIdDTO":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"}}},"StudentGroupPatchDTO":{"type":"object","properties":{"module":{"$ref":"#/components/schemas/ModuleIdDTO"},"capacity":{"type":"integer","format":"int32"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionIdDTO"}},"members":{"type":"array","items":{"$ref":"#/components/schemas/RoleIdDTO"}}}},"TOTPKeyInfoDetailsDTO":{"required":["createdAt"],"type":"object","properties":{"createdAt":{"type":"string","format":"date-time"},"retractedAt":{"type":"string","format":"date-time"},"person":{"$ref":"#/components/schemas/PersonSummaryDTO"},"retracted":{"type":"boolean"}}},"ClusterIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"CourseIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"ModuleDivisionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"PersonPatchDTO":{"type":"object","properties":{"username":{"type":"string"},"displayName":{"type":"string"},"email":{"type":"string"},"number":{"type":"integer","format":"int32"},"roles":{"type":"array","items":{"$ref":"#/components/schemas/RoleIdDTO"}},"directs":{"type":"array","items":{"$ref":"#/components/schemas/ProgramIdDTO"}},"manages":{"type":"array","items":{"$ref":"#/components/schemas/CourseIdDTO"}},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionIdDTO"}},"programs":{"type":"array","items":{"$ref":"#/components/schemas/ProgramIdDTO"}},"coordinates":{"type":"array","items":{"$ref":"#/components/schemas/ProgramIdDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/ClusterIdDTO"}},"divisions":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionIdDTO"}}}},"ProgramIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"ModuleDivisionDetailsDTO":{"required":["id","module"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"module":{"$ref":"#/components/schemas/ModuleSummaryDTO"},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}},"PermissionSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"SubmissionSummaryDTO":{"required":["id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"submissionTime":{"type":"string","format":"date-time"},"approvalTime":{"type":"string","format":"date-time"}}},"CohortIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"ProgramPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"director":{"$ref":"#/components/schemas/PersonIdDTO"},"coordinators":{"type":"array","items":{"$ref":"#/components/schemas/PersonIdDTO"}},"courses":{"type":"array","items":{"$ref":"#/components/schemas/CourseIdDTO"}},"cohorts":{"type":"array","items":{"$ref":"#/components/schemas/CohortIdDTO"}},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonIdDTO"}}}},"PersonCreateDTO":{"required":["number","username"],"type":"object","properties":{"externalId":{"type":"string"},"username":{"type":"string"},"displayName":{"type":"string"},"email":{"type":"string"},"defaultRole":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"number":{"type":"integer","format":"int32"}}},"BuildingIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"RoomPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"abbreviation":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"description":{"type":"string"},"building":{"$ref":"#/components/schemas/BuildingIdDTO"}}},"GradeSummaryDTO":{"required":["gradedAt","id","isScriptGraded","scheme","score"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"scheme":{"type":"string","enum":["PASS_FAIL","DUTCH_GRADE","DUTCH_GRADE_1000","SCORE_OUT_OF_10","SCORE_OUT_OF_100","SCORE_OUT_OF_1000","SCORE_OUT_OF_10000","UNLIMITED"]},"score":{"type":"integer","format":"int32"},"gradedAt":{"type":"string","format":"date-time"},"isScriptGraded":{"type":"boolean"}}},"SubmissionDetailsDTO":{"required":["assignment","grades","group","id","submitter"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"submissionTime":{"type":"string","format":"date-time"},"approvalTime":{"type":"string","format":"date-time"},"submitter":{"$ref":"#/components/schemas/PersonSummaryDTO"},"assignment":{"$ref":"#/components/schemas/AssignmentSummaryDTO"},"group":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"},"grades":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/GradeSummaryDTO"}}}},"AssignmentIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"SingleSessionCreateDTO":{"required":["edition","end","name","rooms","start"],"type":"object","properties":{"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"},"rooms":{"type":"array","items":{"$ref":"#/components/schemas/RoomIdDTO"}},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentIdDTO"}},"edition":{"$ref":"#/components/schemas/EditionIdDTO"}}},"GradeBatchImportDTO":{"required":["grades","type"],"type":"object","properties":{"type":{"type":"string","enum":["NUMBER","USERNAME","GROUP_NAME"]},"grades":{"type":"array","items":{"$ref":"#/components/schemas/GradeImportDTO"}}}},"GradeImportDTO":{"required":["gradeeId","scheme","score"],"type":"object","properties":{"scheme":{"type":"string","enum":["PASS_FAIL","DUTCH_GRADE","DUTCH_GRADE_1000","SCORE_OUT_OF_10","SCORE_OUT_OF_100","SCORE_OUT_OF_1000","SCORE_OUT_OF_10000","UNLIMITED"]},"score":{"type":"integer","format":"int32"},"isScriptGraded":{"type":"boolean"},"gradedAt":{"type":"string","format":"date-time"},"gradeeId":{"type":"string"}}},"ModuleAssignmentsGroupsDetailsDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}},"CourseDetailsDTO":{"required":["code","id","isArchived","manager","name","program"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"code":{"type":"string"},"isArchived":{"type":"boolean"},"program":{"$ref":"#/components/schemas/ProgramSummaryDTO"},"manager":{"$ref":"#/components/schemas/PersonSummaryDTO"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}},"ProgramDetailsDTO":{"required":["director","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"director":{"$ref":"#/components/schemas/PersonSummaryDTO"},"courses":{"type":"array","items":{"$ref":"#/components/schemas/CourseSummaryDTO"}},"cohorts":{"type":"array","items":{"$ref":"#/components/schemas/CohortSummaryDTO"}}}},"ClusterImportDTO":{"type":"object","properties":{"clusters":{"type":"object","additionalProperties":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}}},"RoleSummaryDTO":{"required":["id","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}},"EditionCollectionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"SharedSessionCreateDTO":{"required":["editionCollection","end","name","rooms","start"],"type":"object","properties":{"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"},"rooms":{"type":"array","items":{"$ref":"#/components/schemas/RoomIdDTO"}},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentIdDTO"}},"editionCollection":{"$ref":"#/components/schemas/EditionCollectionIdDTO"}}},"AssignmentPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"deadline":{"type":"string","format":"date-time"},"description":{"$ref":"#/components/schemas/Description"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}},"module":{"$ref":"#/components/schemas/ModuleIdDTO"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionIdDTO"}},"sessions":{"type":"array","items":{"$ref":"#/components/schemas/SessionIdDTO"}}}},"SessionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"RolePersonLayer1DTO":{"required":["id","person","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"person":{"$ref":"#/components/schemas/PersonSummaryDTO"}}},"StudentGroupDetailsDTO":{"required":["assignmentsSubmitted","capacity","id","memberUsernames","members","module","name","submissions"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"division":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"},"memberUsernames":{"type":"array","items":{"type":"string"}},"assignmentsSubmitted":{"type":"object","additionalProperties":{"type":"boolean"}},"module":{"$ref":"#/components/schemas/ModuleSummaryDTO"},"members":{"type":"array","items":{"$ref":"#/components/schemas/RolePersonLayer1DTO"}},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionSummaryDTO"}}}},"AssignmentCreateDTO":{"required":["module","name"],"type":"object","properties":{"name":{"type":"string"},"description":{"$ref":"#/components/schemas/Description"},"deadline":{"type":"string","format":"date-time"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}},"module":{"$ref":"#/components/schemas/ModuleIdDTO"}}},"StudentGroupIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"SubmissionCreateDTO":{"required":["assignment","group","submitter"],"type":"object","properties":{"submitter":{"$ref":"#/components/schemas/PersonIdDTO"},"assignment":{"$ref":"#/components/schemas/AssignmentIdDTO"},"group":{"$ref":"#/components/schemas/StudentGroupIdDTO"}}},"APIKeyPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"expiresAt":{"type":"string","format":"date-time"}}},"AssignmentModuleDetailsDTO":{"required":["acceptLateSubmissions","allowedFileTypes","description","id","module","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"description":{"$ref":"#/components/schemas/Description"},"deadline":{"type":"string","format":"date-time"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}},"module":{"$ref":"#/components/schemas/ModuleLayer1DTO"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionSummaryDTO"}}}},"ModuleLayer1DTO":{"required":["edition","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}},"divisions":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"}}}},"SessionPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"},"rooms":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/RoomIdDTO"}},"assignments":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/AssignmentIdDTO"}}}},"ModuleDetailsDTO":{"required":["assignments","divisions","edition","groups","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSmallSummaryDTO"}},"divisions":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"}}}},"StudentGroupSmallSummaryDTO":{"required":["capacity","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"capacity":{"type":"integer","format":"int32"}}},"CourseCreateDTO":{"required":["code","manager","name"],"type":"object","properties":{"name":{"type":"string"},"code":{"type":"string"},"program":{"$ref":"#/components/schemas/ProgramIdDTO"},"manager":{"$ref":"#/components/schemas/PersonIdDTO"}}},"EditionCreateDTO":{"required":["cohort","course","endDate","enrollability","name","startDate"],"type":"object","properties":{"name":{"type":"string"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"course":{"$ref":"#/components/schemas/CourseIdDTO"},"cohort":{"$ref":"#/components/schemas/CohortIdDTO"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]}}},"RoleEditionDetailsDTO":{"required":["edition","id","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"}}},"ClusterDetailsDTO":{"required":["cohort","id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"cohort":{"$ref":"#/components/schemas/CohortSummaryDTO"},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}},"EditionModulesLayer2DTO":{"required":["endDate","enrollability","id","isArchived","name","startDate"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"isArchived":{"type":"boolean"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]},"modules":{"type":"array","items":{"$ref":"#/components/schemas/ModuleSummaryDTO"}}}},"PersonDetailsDTO":{"required":["defaultRole","displayName","externalId","id","number","username"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"externalId":{"type":"string"},"username":{"type":"string"},"displayName":{"type":"string"},"email":{"type":"string"},"defaultRole":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"number":{"type":"integer","format":"int32"},"accountDisabled":{"type":"boolean"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionWithoutPersonLayer1DTO"}},"roles":{"type":"array","items":{"$ref":"#/components/schemas/RoleEditionLayer1DTO"}}}},"RoleEditionLayer1DTO":{"required":["edition","id","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"edition":{"$ref":"#/components/schemas/EditionModulesLayer2DTO"}}},"SubmissionWithoutPersonLayer1DTO":{"required":["assignment","group","id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"submissionTime":{"type":"string","format":"date-time"},"approvalTime":{"type":"string","format":"date-time"},"assignment":{"$ref":"#/components/schemas/AssignmentSummaryDTO"},"group":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}},"GroupGenerateDTO":{"type":"object","properties":{"amount":{"type":"integer","format":"int32"},"capacity":{"type":"integer","format":"int32"}}},"ModulePatchDTO":{"type":"object","properties":{"name":{"type":"string"},"edition":{"$ref":"#/components/schemas/EditionIdDTO"},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentIdDTO"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupIdDTO"}},"divisions":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionIdDTO"}}}},"StudentGroupCreateDTO":{"required":["capacity","name"],"type":"object","properties":{"name":{"type":"string"},"module":{"$ref":"#/components/schemas/ModuleIdDTO"},"capacity":{"type":"integer","format":"int32"},"members":{"type":"array","items":{"$ref":"#/components/schemas/RoleIdDTO"}}}},"GradePatchDTO":{"type":"object","properties":{"scheme":{"type":"string","enum":["PASS_FAIL","DUTCH_GRADE","DUTCH_GRADE_1000","SCORE_OUT_OF_10","SCORE_OUT_OF_100","SCORE_OUT_OF_1000","SCORE_OUT_OF_10000","UNLIMITED"]},"score":{"type":"integer","format":"int32"},"isScriptGraded":{"type":"boolean"},"gradedAt":{"type":"string","format":"date-time"},"gradedBy":{"$ref":"#/components/schemas/PersonIdDTO"}}},"ModuleDivisionCreateDTO":{"type":"object","properties":{"usernames":{"type":"array","items":{"type":"string"}}}},"APIKeyCreateDTO":{"required":["expiresAt","name","permissions"],"type":"object","properties":{"name":{"type":"string"},"expiresAt":{"type":"string","format":"date-time"},"permissions":{"type":"array","items":{"$ref":"#/components/schemas/PermissionIdDTO"}}}},"PermissionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"APIKeySecretDetailsDTO":{"required":["createdAt","createdBy","enabled","expiresAt","id","key","name","secret"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"expiresAt":{"type":"string","format":"date-time"},"enabled":{"type":"boolean"},"key":{"type":"string"},"secret":{"type":"string"},"createdBy":{"$ref":"#/components/schemas/PersonSummaryDTO"},"permissions":{"type":"array","items":{"$ref":"#/components/schemas/PermissionSummaryDTO"}}}},"BuildingCreateDTO":{"required":["name"],"type":"object","properties":{"name":{"type":"string"},"abbreviation":{"type":"string"},"description":{"type":"string"},"address":{"$ref":"#/components/schemas/Address"}}},"EditionCollectionCreateDTO":{"required":["name"],"type":"object","properties":{"name":{"type":"string"},"editions":{"maxItems":2147483647,"minItems":2,"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/EditionIdDTO"}}}},"StudentGroupMembersLayer1DTO":{"required":["assignmentsSubmitted","capacity","id","memberUsernames","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"division":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"},"memberUsernames":{"type":"array","items":{"type":"string"}},"assignmentsSubmitted":{"type":"object","additionalProperties":{"type":"boolean"}},"members":{"type":"array","items":{"$ref":"#/components/schemas/RoleSummaryDTO"}}}},"SubmissionMemberDetailsDTO":{"required":["assignment","group","id","submitter"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"submissionTime":{"type":"string","format":"date-time"},"approvalTime":{"type":"string","format":"date-time"},"submitter":{"$ref":"#/components/schemas/PersonSummaryDTO"},"assignment":{"$ref":"#/components/schemas/AssignmentSummaryDTO"},"group":{"$ref":"#/components/schemas/StudentGroupMembersLayer1DTO"}}},"APIKeyDetailsDTO":{"required":["createdAt","createdBy","enabled","expiresAt","id","key","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"expiresAt":{"type":"string","format":"date-time"},"enabled":{"type":"boolean"},"key":{"type":"string"},"createdBy":{"$ref":"#/components/schemas/PersonSummaryDTO"},"permissions":{"type":"array","items":{"$ref":"#/components/schemas/PermissionSummaryDTO"}}}},"ClusterPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"cohort":{"$ref":"#/components/schemas/CohortIdDTO"},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonIdDTO"}}}},"CoursePatchDTO":{"type":"object","properties":{"name":{"type":"string"},"code":{"type":"string"},"isArchived":{"type":"boolean"},"program":{"$ref":"#/components/schemas/ProgramIdDTO"},"manager":{"$ref":"#/components/schemas/PersonIdDTO"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionIdDTO"}}}},"ClusterSummaryDTO":{"required":["id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"CohortDetailsDTO":{"required":["id","name","program"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"program":{"$ref":"#/components/schemas/ProgramSummaryDTO"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/ClusterSummaryDTO"}}}},"EditionPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"course":{"$ref":"#/components/schemas/CourseIdDTO"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]},"cohort":{"$ref":"#/components/schemas/CohortIdDTO"},"roles":{"type":"array","items":{"$ref":"#/components/schemas/RoleIdDTO"}},"modules":{"type":"array","items":{"$ref":"#/components/schemas/ModuleIdDTO"}}}},"RoomDetailsDTO":{"required":["building","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"abbreviation":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"description":{"type":"string"},"building":{"$ref":"#/components/schemas/BuildingSummaryDTO"}}},"SessionDetailsDTO":{"required":["assignments","editions","end","id","name","rooms","start"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"},"rooms":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/RoomDetailsDTO"}},"assignments":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"},"editionCollection":{"$ref":"#/components/schemas/EditionCollectionSummaryDTO"},"editions":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}},"RoomCreateDTO":{"required":["name"],"type":"object","properties":{"name":{"type":"string"},"abbreviation":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"description":{"type":"string"},"building":{"$ref":"#/components/schemas/BuildingIdDTO"}}},"CohortCreateDTO":{"required":["name","program"],"type":"object","properties":{"name":{"type":"string"},"program":{"$ref":"#/components/schemas/ProgramIdDTO"}}},"RoleDetailsDTO":{"required":["edition","id","person","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"person":{"$ref":"#/components/schemas/PersonSummaryDTO"},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"}}},"AssignmentDetailsDTO":{"required":["acceptLateSubmissions","allowedFileTypes","description","id","module","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"description":{"$ref":"#/components/schemas/Description"},"deadline":{"type":"string","format":"date-time"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}},"module":{"$ref":"#/components/schemas/ModuleSummaryDTO"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionSummaryDTO"}},"sessions":{"type":"array","items":{"$ref":"#/components/schemas/SessionSummaryDTO"}}}},"RoleCreateDTO":{"required":["edition","person","type"],"type":"object","properties":{"person":{"$ref":"#/components/schemas/PersonIdDTO"},"edition":{"$ref":"#/components/schemas/EditionIdDTO"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}},"RolePatchDTO":{"type":"object","properties":{"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}},"ClusterCreateDTO":{"required":["cohort"],"type":"object","properties":{"name":{"type":"string"},"cohort":{"$ref":"#/components/schemas/CohortIdDTO"},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonIdDTO"}}}},"RolePersonDetailsDTO":{"required":["id","person","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"person":{"$ref":"#/components/schemas/PersonSummaryDTO"}}},"Period":{"type":"object","properties":{"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"}}},"ParticipantsImportDTO":{"type":"object","properties":{"participants":{"type":"object","additionalProperties":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}}},"CohortPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"program":{"$ref":"#/components/schemas/ProgramIdDTO"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionIdDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/ClusterIdDTO"}}}}}}}
\ No newline at end of file
+{"openapi":"3.0.1","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"http://localhost:8082","description":"Generated server url"}],"paths":{"/api/program/{program}":{"get":{"tags":["program-controller"],"operationId":"getProgramById","parameters":[{"name":"program","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ProgramDetailsDTO"}}}}}},"patch":{"tags":["program-controller"],"operationId":"patchProgram","parameters":[{"name":"program","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProgramPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/cluster/by-ids":{"get":{"tags":["cluster-controller"],"operationId":"getAllClustersById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ClusterDetailsDTO"}}}}}}}},"/api/student-group/{moduleId}/generate":{"post":{"tags":["student-group-controller"],"operationId":"generateGroupsForModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupGenerateDTO"}}}},"responses":{"200":{"description":"default response"}}}},"/api/edition/{id}":{"get":{"tags":["edition-controller"],"operationId":"getEditionById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}},"delete":{"tags":["edition-controller"],"operationId":"deleteEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["edition-controller"],"operationId":"patchEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EditionPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/role/by-ids":{"get":{"tags":["role-controller"],"operationId":"getRolesById","parameters":[{"name":"editionIds","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"personIds","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoleDetailsDTO"}}}}}}}},"/api/edition-collection/by-edition/{edition}":{"get":{"tags":["edition-collection-controller"],"operationId":"getEditionCollectionsByEdition","parameters":[{"name":"edition","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionCollectionSummaryDTO"}}}}}}}},"/api/course/manager/{managerId}":{"get":{"tags":["course-controller"],"operationId":"getAllCoursesByManager","parameters":[{"name":"managerId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CourseSummaryDTO"}}}}}}}},"/api/grade/remove-highest/{submissionId}":{"post":{"tags":["grade-controller"],"operationId":"removeHighestGrade","parameters":[{"name":"submissionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/division/{moduleId}/create/{amount}":{"post":{"tags":["module-division-controller"],"operationId":"createDivisionsForParticipants","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"amount","in":"path","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"default response"}}}},"/api/student-group":{"post":{"tags":["student-group-controller"],"operationId":"addGroup","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StudentGroupCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/submission/{id}":{"get":{"tags":["submission-controller"],"operationId":"getSubmissionById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SubmissionMemberDetailsDTO"}}}}}},"delete":{"tags":["submission-controller"],"operationId":"deleteSubmission","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/student-group/{id}/role/{personId}":{"get":{"tags":["student-group-controller"],"operationId":"getRoleOfMember","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RoleSummaryDTO"}}}}}}},"/api/auth/{personId}/program-manager/{programId}":{"get":{"tags":["authorization-controller"],"operationId":"isProgramManager","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/student-group/{moduleId}/module":{"get":{"tags":["student-group-controller"],"operationId":"getAllGroupsInModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}}}}}},"/api/api-key/{apiKey}":{"get":{"tags":["api-key-controller"],"operationId":"getAPIKeyById","parameters":[{"name":"apiKey","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/APIKeyDetailsDTO"}}}}}},"patch":{"tags":["api-key-controller"],"operationId":"patchAPIKey","parameters":[{"name":"apiKey","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/APIKeyPatchDTO"}}}},"responses":{"200":{"description":"default response"}}}},"/api/student-group/{id}/module-id":{"get":{"tags":["student-group-controller"],"operationId":"getModuleIdFromGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition":{"get":{"tags":["edition-controller"],"operationId":"getAllEditions","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}},"post":{"tags":["edition-controller"],"description":"Adds a course Edition","operationId":"addEdition","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EditionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{personId}/manage-module/{module}":{"get":{"tags":["authorization-controller"],"operationId":"canManageModule","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"module","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/building":{"get":{"tags":["building-controller"],"operationId":"getAllBuildings","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/BuildingSummaryDTO"}}}}}}},"post":{"tags":["building-controller"],"operationId":"addBuilding","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BuildingCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/cluster/{id}":{"get":{"tags":["cluster-controller"],"operationId":"getClusterById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ClusterDetailsDTO"}}}}}},"delete":{"tags":["cluster-controller"],"operationId":"deleteCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["cluster-controller"],"operationId":"patchCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClusterPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/2fa/totp/secret":{"get":{"tags":["totp-controller"],"operationId":"getTOTPSecret","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/submission/can-submit/{groupId}/{assignmentId}":{"get":{"tags":["submission-controller"],"operationId":"canMakeSubmission","parameters":[{"name":"groupId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/auth/{personId}/course-manager/{courseId}":{"get":{"tags":["authorization-controller"],"operationId":"isCourseManager","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"courseId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/grade/{id}":{"delete":{"tags":["grade-controller"],"operationId":"deleteGrade","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["grade-controller"],"operationId":"patchGrade","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GradePatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{personId}/cohort-manager/{cohortId}":{"get":{"tags":["authorization-controller"],"operationId":"isCohortManager","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"cohortId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/room":{"get":{"tags":["room-controller"],"operationId":"getAllRooms","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoomSummaryDTO"}}}}}}},"post":{"tags":["room-controller"],"operationId":"addRoom","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoomCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/2fa/totp/key-info":{"get":{"tags":["totp-controller"],"operationId":"getTOTPKeyInfo","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TOTPKeyInfoDetailsDTO"}}}}}}},"/api/assignment":{"get":{"tags":["assignment-controller"],"operationId":"getAllAssignments","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}}}}}}},"post":{"tags":["assignment-controller"],"operationId":"addAssignment","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssignmentCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/api-key":{"get":{"tags":["api-key-controller"],"operationId":"getAllAPIKeys","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/APIKeySummaryDTO"}}}}}}},"post":{"tags":["api-key-controller"],"operationId":"addAPIKey","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/APIKeyCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/APIKeySecretDetailsDTO"}}}}}}},"/api/person/username/{username}":{"get":{"tags":["person-controller"],"operationId":"getPersonByUsername","parameters":[{"name":"username","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDetailsDTO"}}}}}}},"/api/db/people":{"get":{"tags":["db-loader-controller"],"operationId":"getAllPeopleInDB","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/module/{id}":{"get":{"tags":["module-controller"],"operationId":"getModuleById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ModuleDetailsDTO"}}}}}},"delete":{"tags":["module-controller"],"operationId":"deleteModule","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["module-controller"],"operationId":"patchModule","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModulePatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/person/{id}":{"get":{"tags":["person-controller"],"operationId":"getPersonById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDetailsDTO"}}}}}},"patch":{"tags":["person-controller"],"operationId":"patchPerson","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/student-group/{id}/locked":{"get":{"tags":["student-group-controller"],"operationId":"isGroupLocked","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/student-group/{id}":{"get":{"tags":["student-group-controller"],"operationId":"viewGroupDetails","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/StudentGroupDetailsDTO"}}}}}},"delete":{"tags":["student-group-controller"],"operationId":"deleteStudentGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["student-group-controller"],"operationId":"patchGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StudentGroupPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/person/search/number/{number}/by-edition/{editionId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByEditionAndNumberContaining","parameters":[{"name":"number","in":"path","required":true,"schema":{"type":"integer","format":"int32"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/db/submissions/reviewers":{"get":{"tags":["db-loader-controller"],"operationId":"getReviewersForSubmissionsInDB","parameters":[{"name":"submissions","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoleSummaryDTO"}}}}}}}},"/api/building/{id}":{"get":{"tags":["building-controller"],"operationId":"getBuildingById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BuildingDetailsDTO"}}}}}},"delete":{"tags":["building-controller"],"operationId":"deleteBuilding","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["building-controller"],"operationId":"patchBuilding","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BuildingPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/course/edition/{editionId}":{"get":{"tags":["course-controller"],"operationId":"getCourseByEdition","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CourseDetailsDTO"}}}}}}},"/api/edition/active-at":{"put":{"tags":["edition-controller"],"operationId":"getAllEditionsActiveAtDate","requestBody":{"content":{"application/json":{"schema":{"type":"string","format":"date-time"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}}}}}},"/api/submission/by-module/{moduleId}":{"get":{"tags":["submission-controller"],"operationId":"getSubmissionsByModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}}},"/api/role/{personId}/{editionId}":{"patch":{"tags":["role-controller"],"operationId":"patchRole","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RolePatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Id"}}}}}}},"/api/room/{id}":{"get":{"tags":["room-controller"],"operationId":"getRoomById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RoomDetailsDTO"}}}}}},"delete":{"tags":["room-controller"],"operationId":"deleteRoom","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["room-controller"],"operationId":"patchRoom","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoomPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition-collection/{id}":{"get":{"tags":["edition-collection-controller"],"operationId":"getEditionCollectionById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/EditionCollectionDetailsDTO"}}}}}},"delete":{"tags":["edition-collection-controller"],"operationId":"deleteEditionCollection","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["edition-collection-controller"],"operationId":"patchEditionCollection","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EditionCollectionPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/cohort":{"get":{"tags":["cohort-controller"],"operationId":"getAllCohorts","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CohortSummaryDTO"}}}}}}},"post":{"tags":["cohort-controller"],"operationId":"addCohort","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CohortCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition/{editionId}/modules":{"get":{"tags":["edition-controller"],"description":"Gets all modules of an edition","operationId":"getEditionModules","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleSummaryDTO"}}}}}}}},"/api/room/by-ids":{"get":{"tags":["room-controller"],"operationId":"getAllRoomsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoomDetailsDTO"}}}}}}}},"/api/assignment/{moduleId}/all":{"get":{"tags":["assignment-controller"],"operationId":"getAllAssignmentsByModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}}}}}}}},"/api/edition/active-or-taught-by/{personId}/page":{"get":{"tags":["edition-controller"],"operationId":"getEditionsPageActiveOrTaughtBy","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"pageable","in":"query","required":true,"schema":{"$ref":"#/components/schemas/LCPageable"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageEditionDetailsDTO"}}}}}}},"/api/cohort/by-ids":{"get":{"tags":["cohort-controller"],"operationId":"getAllCohortsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CohortDetailsDTO"}}}}}}}},"/api/program/{id}":{"delete":{"tags":["program-controller"],"operationId":"deleteProgram","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/permission":{"get":{"tags":["permission-controller"],"operationId":"getAllPermissions","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PermissionSummaryDTO"}}}}}}}},"/api/edition/active-or-taught-by/{personId}":{"get":{"tags":["edition-controller"],"operationId":"getAllEditionsActiveOrTaughtBy","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}}},"/api/course":{"get":{"tags":["course-controller"],"operationId":"getAllCourses","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CourseSummaryDTO"}}}}}}},"post":{"tags":["course-controller"],"operationId":"addCourse","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CourseCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{person}/staff-in-any-current-edition":{"get":{"tags":["authorization-controller"],"operationId":"hasStaffRoleInAnyCurrentEdition","parameters":[{"name":"person","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/cluster/{id}/remove/{personId}":{"delete":{"tags":["cluster-controller"],"operationId":"removePersonFromCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition/program/{id}":{"get":{"tags":["edition-controller"],"operationId":"getAllEditionsByCourse","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}}},"/api/course/program/{programId}":{"get":{"tags":["course-controller"],"operationId":"getAllCoursesByProgram","parameters":[{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CourseSummaryDTO"}}}}}}}},"/api/student-group/{divisionId}/division":{"get":{"tags":["student-group-controller"],"operationId":"getAllGroupsInDivision","parameters":[{"name":"divisionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}}}}}},"/api/edition/{editionId}/add/cohort/{cohortId}":{"post":{"tags":["edition-controller"],"operationId":"addCohortToEdition","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"cohortId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/session/single":{"post":{"tags":["session-controller"],"operationId":"addSingleSession","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SingleSessionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{person}/staff-in-any-edition":{"get":{"tags":["authorization-controller"],"operationId":"hasStaffRoleInAnyEdition","parameters":[{"name":"person","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/submission/by-assignment/{assignmentId}":{"get":{"tags":["submission-controller"],"operationId":"getSubmissionsByAssignment","parameters":[{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}}},"/api/auth/{personId}/staff-in-course/{courseId}":{"get":{"tags":["authorization-controller"],"operationId":"isStaffInCourse","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"courseId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition/{id}/remove/person/{personId}":{"delete":{"tags":["edition-controller"],"operationId":"removePersonFromEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/cohort/{id}":{"get":{"tags":["cohort-controller"],"operationId":"getCohortById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CohortDetailsDTO"}}}}}},"delete":{"tags":["cohort-controller"],"operationId":"deleteCohort","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["cohort-controller"],"operationId":"patchCohort","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CohortPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/2fa/totp/create":{"put":{"tags":["totp-controller"],"operationId":"createTOTPKey","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TOTPKeyInfoDetailsDTO"}}}}}}},"/api/edition/{editionId}/add/tas":{"post":{"tags":["edition-controller"],"operationId":"addTAsToEdition","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}},"responses":{"200":{"description":"default response"}}}},"/api/auth/{personId}/specific-role/{editionId}/edition":{"get":{"tags":["authorization-controller"],"operationId":"hasSpecificRoleInEdition","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"type","in":"query","required":true,"schema":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/division/{moduleId}/add/random":{"post":{"tags":["module-division-controller"],"operationId":"addPersonToRandomDivision","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"string"}}}},"responses":{"200":{"description":"default response"}}}},"/api/db/submissions":{"get":{"tags":["db-loader-controller"],"operationId":"getAllSubmissionsInDB","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionSummaryDTO"}}}}}}}},"/api/division/{id}":{"get":{"tags":["module-division-controller"],"operationId":"getPeopleInDivision","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ModuleDivisionDetailsDTO"}}}}}},"delete":{"tags":["module-division-controller"],"operationId":"deleteModuleDivision","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/cluster/{id}/import-replace":{"patch":{"tags":["cluster-controller"],"operationId":"importReplacementPeopleToCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}}}}}},"/api/course/{id}":{"get":{"tags":["course-controller"],"operationId":"getCourseById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CourseDetailsDTO"}}}}}},"delete":{"tags":["course-controller"],"operationId":"deleteCourse","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["course-controller"],"operationId":"patchCourse","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CoursePatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/submission/by-group-and-assignment/{groupId}/{assignmentId}":{"get":{"tags":["submission-controller"],"operationId":"getSubmissionsForGroupAndAssignment","parameters":[{"name":"groupId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}}},"/api/submission/by-ids":{"get":{"tags":["submission-controller"],"operationId":"getAllSubmissionsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}}},"/api/assignment/{id}":{"get":{"tags":["assignment-controller"],"operationId":"getAssignmentById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AssignmentModuleDetailsDTO"}}}}}},"delete":{"tags":["assignment-controller"],"operationId":"deleteAssignment","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["assignment-controller"],"operationId":"patchAssignment","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssignmentPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{personId}/manager-anywhere":{"get":{"tags":["authorization-controller"],"operationId":"hasManagerRoleInAnyCourse","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition/{id}/block/person/{personId}":{"delete":{"tags":["edition-controller"],"operationId":"blockPersonInEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/role/{person}/active-editions":{"get":{"tags":["role-controller"],"operationId":"getPersonRolesInActiveEditions","parameters":[{"name":"person","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoleDetailsDTO"}}}}}}}},"/api/person/search/username/by-program/{programId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByProgramAndUsernameContaining","parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string"}},{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/student-group/{id}/add/members":{"post":{"tags":["student-group-controller"],"operationId":"addGroupMembers","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"usernames","in":"query","required":true,"schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"default response"}}}},"/api/session/active-now-and-by-edition":{"get":{"tags":["session-controller"],"operationId":"getActiveSessionsInEditions","parameters":[{"name":"editionIds","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SessionDetailsDTO"}}}}}}}},"/api/session/by-ids":{"get":{"tags":["session-controller"],"operationId":"getSessionsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SessionDetailsDTO"}}}}}}}},"/api/student-group/{id}/leave/{personId}":{"patch":{"tags":["student-group-controller"],"operationId":"removeMemberFromGroup","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/program":{"post":{"tags":["program-controller"],"operationId":"addProgram","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProgramCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/division/{moduleId}/import/clusters/{extra}":{"post":{"tags":["module-division-controller"],"operationId":"importDivisionsFromClusters","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"extra","in":"path","required":true,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"default response"}}}},"/api/grade":{"post":{"tags":["grade-controller"],"operationId":"addGrade","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GradeCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/division/{moduleId}/module":{"get":{"tags":["module-division-controller"],"operationId":"getAllDivisionsInModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionDetailsDTO"}}}}}}}},"/api/person":{"post":{"tags":["person-controller"],"operationId":"addPerson","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/student-group/{id}/add/member/{memId}":{"post":{"tags":["student-group-controller"],"operationId":"addMemberToGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"memId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/edition/{id}/add-participants":{"post":{"tags":["edition-controller"],"operationId":"addParticipantsToEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ParticipantsImportDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"object","additionalProperties":{"type":"array","items":{"type":"string"}}}}}}}}},"/api/student-group/{id}/locked_student/{personId}":{"get":{"tags":["student-group-controller"],"operationId":"isGroupLockedAndRoleStudent","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/session/{id}":{"delete":{"tags":["session-controller"],"operationId":"deleteSession","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}},"patch":{"tags":["session-controller"],"operationId":"patchSession","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SessionPatchDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/program/by-ids":{"get":{"tags":["program-controller"],"operationId":"getAllProgramsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProgramDetailsDTO"}}}}}}}},"/api/person/search/username/by-edition/{editionId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByEditionAndUsernameContaining","parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/db/modules":{"get":{"tags":["db-loader-controller"],"operationId":"getAllModuleAssignmentsAndGroupsInDB","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleAssignmentsGroupsDetailsDTO"}}}}}}}},"/api/student-group/by-person-and-course/{personId}/{courseId}":{"get":{"tags":["student-group-controller"],"operationId":"getGroupsForPersonAndCourse","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"courseId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}}}}}},"/api/cohort/{programId}/program":{"get":{"tags":["cohort-controller"],"operationId":"getAllCohortsInProgram","parameters":[{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CohortSummaryDTO"}}}}}}}},"/api/student-group/by-person-and-module/{personId}/{moduleId}":{"get":{"tags":["student-group-controller"],"operationId":"getGroupForPersonAndModule","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/StudentGroupDetailsDTO"}}}}}}},"/api/person/search/number/{number}/by-program/{programId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByProgramAndNumberContaining","parameters":[{"name":"number","in":"path","required":true,"schema":{"type":"integer","format":"int32"}},{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/auth/{personId}/manage-edition/{editionId}":{"get":{"tags":["authorization-controller"],"operationId":"canManageEdition","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/person/external-id/{externalId}":{"get":{"tags":["person-controller"],"operationId":"getPersonByExternalId","parameters":[{"name":"externalId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDetailsDTO"}}}}}}},"/api/submission":{"get":{"tags":["submission-controller"],"operationId":"getAllSubmissions","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionMemberDetailsDTO"}}}}}}},"post":{"tags":["submission-controller"],"operationId":"addSubmission","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SubmissionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/person/search/number/{number}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByNumberContaining","parameters":[{"name":"number","in":"path","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/student-group/by-person/{personId}":{"get":{"tags":["student-group-controller"],"operationId":"getGroupsForPerson","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}}}}}},"/api/role/by-editions":{"get":{"tags":["role-controller"],"operationId":"getRolesByEditions","parameters":[{"name":"editionIds","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RolePersonDetailsDTO"}}}}}}}},"/api/student-group/{moduleId}/capacity/{capacity}":{"patch":{"tags":["student-group-controller"],"operationId":"changeCapacitiesOfGroupsInModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"capacity","in":"path","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"default response"}}}},"/api/person/by-ids":{"get":{"tags":["person-controller"],"operationId":"getPeopleById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/grade/import/{assignmentId}":{"patch":{"tags":["grade-controller"],"operationId":"importGrades","parameters":[{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GradeBatchImportDTO"}}}},"responses":{"200":{"description":"default response"}}}},"/api/auth/{personId}/cluster-manager/{clusterId}":{"get":{"tags":["authorization-controller"],"operationId":"isClusterManager","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"clusterId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition-collection/by-ids":{"get":{"tags":["edition-collection-controller"],"operationId":"getEditionCollectionsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionCollectionDetailsDTO"}}}}}}}},"/api/building/by-ids":{"get":{"tags":["building-controller"],"operationId":"getAllBuildingsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/BuildingDetailsDTO"}}}}}}}},"/api/student-group/{moduleId}/import":{"post":{"tags":["student-group-controller"],"operationId":"importGroupsToModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GroupImportDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"type":"string"}}}}}}}},"/api/student-group/by-ids":{"get":{"tags":["student-group-controller"],"operationId":"getStudentGroupsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupDetailsDTO"}}}}}}}},"/api/cohort/{id}/import-clusters":{"post":{"tags":["cohort-controller"],"operationId":"importClustersToCohort","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClusterImportDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"type":"string"}}}}}}}},"/api/edition/{editionId}/roles":{"get":{"tags":["edition-controller"],"operationId":"getEditionParticipants","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RolePersonDetailsDTO"}}}}}}}},"/api/module":{"post":{"tags":["module-controller"],"operationId":"addModule","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModuleCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/edition/by-ids":{"get":{"tags":["edition-controller"],"operationId":"getEditionsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}}},"/api/assignment/by-ids":{"get":{"tags":["assignment-controller"],"operationId":"getAllAssignmentsById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentDetailsDTO"}}}}}}}},"/api/edition/{editionId}/add/students":{"post":{"tags":["edition-controller"],"operationId":"addStudentsToEdition","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}},"responses":{"200":{"description":"default response"}}}},"/api/person/search/display-name":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByDisplayNameContaining","parameters":[{"name":"displayName","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/module/by-ids":{"get":{"tags":["module-controller"],"operationId":"getModulesById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDetailsDTO"}}}}}}}},"/api/person/{personId}/roles":{"get":{"tags":["person-controller"],"operationId":"getRolesForPerson","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/RoleEditionDetailsDTO"}}}}}}}},"/api/student-group/{id}/add/member":{"post":{"tags":["student-group-controller"],"operationId":"addSingleMemberToGroup","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"string"}}}},"responses":{"200":{"description":"default response"}}}},"/api/student-group/by-person-and-assignment/{personId}/{assignmentId}":{"get":{"tags":["student-group-controller"],"operationId":"getGroupForPersonAndAssignment","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/StudentGroupDetailsDTO"}}}}}}},"/api/person/by-cohort/{cohortId}":{"get":{"tags":["person-controller"],"operationId":"getPeopleByCohort","parameters":[{"name":"cohortId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/session/shared":{"post":{"tags":["session-controller"],"operationId":"addSharedSession","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SharedSessionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/cluster/{id}/remove":{"delete":{"tags":["cluster-controller"],"operationId":"removePeopleFromCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"integer","format":"int64"}}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/auth/{personId}/role/{editionId}/edition":{"get":{"tags":["authorization-controller"],"operationId":"hasRoleInEdition","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/submission/latest/by-group-and-assignment/{groupId}/{assignmentId}":{"get":{"tags":["submission-controller"],"operationId":"getLatestSubmissionForGroupAndAssignment","parameters":[{"name":"groupId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignmentId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SubmissionDetailsDTO"}}}}}}},"/api/auth/{personId}/course-read/{courseId}":{"get":{"tags":["authorization-controller"],"operationId":"canReadCourse","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"courseId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/edition/open-for-enrolment":{"get":{"tags":["edition-controller"],"operationId":"getOpenEditions","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}}}}}}}},"/api/2fa/totp/confirm":{"post":{"tags":["totp-controller"],"operationId":"confirmTOTPPassword","parameters":[{"name":"password","in":"query","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/person/by-edition-and-role/{editionId}/{roleType}":{"get":{"tags":["person-controller"],"operationId":"getPeopleByEditionAndRoleType","parameters":[{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"roleType","in":"path","required":true,"schema":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/edition-collection":{"post":{"tags":["edition-collection-controller"],"operationId":"addEditionCollection","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EditionCollectionCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/auth/{personId}/manage-assignment/{assignment}":{"get":{"tags":["authorization-controller"],"operationId":"canManageAssignment","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"assignment","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/cluster/{id}/import-add":{"patch":{"tags":["cluster-controller"],"operationId":"importAdditionalPeopleToCluster","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}}}}}},"/api/student-group/{moduleId}/allocate":{"post":{"tags":["student-group-controller"],"operationId":"allocateGroupsForModule","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"integer","format":"int32"}}}},"responses":{"200":{"description":"default response"}}}},"/api/edition/{id}/archive":{"put":{"tags":["edition-controller"],"operationId":"archiveEdition","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/2fa/totp/is-enabled":{"get":{"tags":["totp-controller"],"operationId":"checkTOTPEnabledFor","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/person/search/username":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByUsernameContaining","parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/cluster":{"post":{"tags":["cluster-controller"],"operationId":"addCluster","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClusterCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/api/person/search/display-name/by-program/{programId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByProgramAndDisplayNameContaining","parameters":[{"name":"displayName","in":"query","required":true,"schema":{"type":"string"}},{"name":"programId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/role":{"post":{"tags":["role-controller"],"operationId":"addRole","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoleCreateDTO"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Id"}}}}}}},"/api/api-key/disable/{apiKey}":{"put":{"tags":["api-key-controller"],"operationId":"disableAPIKey","parameters":[{"name":"apiKey","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/edition/active-during":{"put":{"tags":["edition-controller"],"operationId":"getAllEditionsActiveDuringPeriod","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Period"}}}},"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}}}}}},"/api/division/{id}/add":{"post":{"tags":["module-division-controller"],"operationId":"addPersonToDivision","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"string"}}}},"responses":{"200":{"description":"default response"}}}},"/api/division/{moduleId}/import":{"post":{"tags":["module-division-controller"],"operationId":"importDivisions","parameters":[{"name":"moduleId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"createUsers","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionCreateDTO"}}}}},"responses":{"200":{"description":"default response"}}}},"/api/auth/{personId}/staff-in-edition/{editionId}":{"get":{"tags":["authorization-controller"],"operationId":"isStaffInEdition","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"boolean"}}}}}}},"/api/course/by-ids":{"get":{"tags":["course-controller"],"operationId":"getAllCoursesById","parameters":[{"name":"ids","in":"query","required":true,"schema":{"uniqueItems":true,"type":"array","items":{"type":"integer","format":"int64"}}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CourseDetailsDTO"}}}}}}}},"/api/edition/page":{"get":{"tags":["edition-controller"],"operationId":"getEditionsPage","parameters":[{"name":"pageable","in":"query","required":true,"schema":{"$ref":"#/components/schemas/LCPageable"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PageEditionDetailsDTO"}}}}}}},"/api/person/search/display-name/by-edition/{editionId}":{"get":{"tags":["person-controller"],"operationId":"searchPeopleByEditionAndDisplayNameContaining","parameters":[{"name":"displayName","in":"query","required":true,"schema":{"type":"string"}},{"name":"editionId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}}}}}},"/api/api-key/enable/{apiKey}":{"put":{"tags":["api-key-controller"],"operationId":"enableAPIKey","parameters":[{"name":"apiKey","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response"}}}},"/api/program/{personId}/all-relevant":{"get":{"tags":["program-controller"],"operationId":"getAllRelevantPrograms","parameters":[{"name":"personId","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProgramSummaryDTO"}}}}}}}},"/api/edition/actively-assisted-by-authenticated":{"get":{"tags":["edition-controller"],"operationId":"getAllEditionsCurrentlyAssistedBy","responses":{"200":{"description":"default response","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}}}}}}},"components":{"schemas":{"CohortSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"CourseSummaryDTO":{"required":["code","id","isArchived","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"code":{"type":"string"},"isArchived":{"type":"boolean"}}},"PersonSummaryDTO":{"required":["defaultRole","displayName","externalId","id","number","username"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"externalId":{"type":"string"},"username":{"type":"string"},"displayName":{"type":"string"},"email":{"type":"string"},"defaultRole":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"number":{"type":"integer","format":"int32"},"accountDisabled":{"type":"boolean"}}},"ProgramDetailsDTO":{"required":["director","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"director":{"$ref":"#/components/schemas/PersonSummaryDTO"},"courses":{"type":"array","items":{"$ref":"#/components/schemas/CourseSummaryDTO"}},"cohorts":{"type":"array","items":{"$ref":"#/components/schemas/CohortSummaryDTO"}}}},"ClusterDetailsDTO":{"required":["cohort","id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"cohort":{"$ref":"#/components/schemas/CohortSummaryDTO"},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}},"GroupGenerateDTO":{"type":"object","properties":{"amount":{"type":"integer","format":"int32"},"capacity":{"type":"integer","format":"int32"}}},"CohortIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"CourseIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"EditionPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"course":{"$ref":"#/components/schemas/CourseIdDTO"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]},"cohort":{"$ref":"#/components/schemas/CohortIdDTO"},"roles":{"type":"array","items":{"$ref":"#/components/schemas/RoleIdDTO"}},"modules":{"type":"array","items":{"$ref":"#/components/schemas/ModuleIdDTO"}}}},"Id":{"type":"object","properties":{"personId":{"type":"integer","format":"int64"},"editionId":{"type":"integer","format":"int64"}}},"ModuleIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"RoleIdDTO":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"}}},"EditionSummaryDTO":{"required":["endDate","enrollability","id","isArchived","name","startDate"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"isArchived":{"type":"boolean"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]}}},"RoleDetailsDTO":{"required":["edition","id","person","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"person":{"$ref":"#/components/schemas/PersonSummaryDTO"},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"}}},"EditionCollectionSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"StudentGroupCreateDTO":{"required":["capacity","name"],"type":"object","properties":{"name":{"type":"string"},"module":{"$ref":"#/components/schemas/ModuleIdDTO"},"capacity":{"type":"integer","format":"int32"},"members":{"type":"array","items":{"$ref":"#/components/schemas/RoleIdDTO"}}}},"RoleSummaryDTO":{"required":["id","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}},"ModuleDivisionSummaryDTO":{"required":["id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"StudentGroupSummaryDTO":{"required":["assignmentsSubmitted","capacity","id","memberUsernames","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"division":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"},"memberUsernames":{"type":"array","items":{"type":"string"}},"assignmentsSubmitted":{"type":"object","additionalProperties":{"type":"boolean"}}}},"APIKeyPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"expiresAt":{"type":"string","format":"date-time"}}},"EditionCreateDTO":{"required":["cohort","course","endDate","enrollability","name","startDate"],"type":"object","properties":{"name":{"type":"string"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"course":{"$ref":"#/components/schemas/CourseIdDTO"},"cohort":{"$ref":"#/components/schemas/CohortIdDTO"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]}}},"Address":{"required":["city","number","street","zipCode"],"type":"object","properties":{"street":{"type":"string"},"number":{"type":"integer","format":"int32"},"numberPostfix":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"}}},"BuildingCreateDTO":{"required":["name"],"type":"object","properties":{"name":{"type":"string"},"abbreviation":{"type":"string"},"description":{"type":"string"},"address":{"$ref":"#/components/schemas/Address"}}},"GradePatchDTO":{"type":"object","properties":{"scheme":{"type":"string","enum":["PASS_FAIL","DUTCH_GRADE","DUTCH_GRADE_1000","SCORE_OUT_OF_10","SCORE_OUT_OF_100","SCORE_OUT_OF_1000","SCORE_OUT_OF_10000","UNLIMITED"]},"score":{"type":"integer","format":"int32"},"isScriptGraded":{"type":"boolean"},"gradedAt":{"type":"string","format":"date-time"},"gradedBy":{"$ref":"#/components/schemas/PersonIdDTO"}}},"PersonIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"RoomSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"abbreviation":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"description":{"type":"string"}}},"TOTPKeyInfoDetailsDTO":{"required":["createdAt"],"type":"object","properties":{"createdAt":{"type":"string","format":"date-time"},"retractedAt":{"type":"string","format":"date-time"},"person":{"$ref":"#/components/schemas/PersonSummaryDTO"},"retracted":{"type":"boolean"}}},"AssignmentSummaryDTO":{"required":["acceptLateSubmissions","allowedFileTypes","description","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"description":{"$ref":"#/components/schemas/Description"},"deadline":{"type":"string","format":"date-time"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}},"Description":{"type":"object","properties":{"text":{"type":"string"},"fileDirectory":{"type":"string"}}},"APIKeyCreateDTO":{"required":["expiresAt","name","permissions"],"type":"object","properties":{"name":{"type":"string"},"expiresAt":{"type":"string","format":"date-time"},"permissions":{"type":"array","items":{"$ref":"#/components/schemas/PermissionIdDTO"}}}},"PermissionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"APIKeySecretDetailsDTO":{"required":["createdAt","createdBy","enabled","expiresAt","id","key","name","secret"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"expiresAt":{"type":"string","format":"date-time"},"enabled":{"type":"boolean"},"key":{"type":"string"},"secret":{"type":"string"},"createdBy":{"$ref":"#/components/schemas/PersonSummaryDTO"},"permissions":{"type":"array","items":{"$ref":"#/components/schemas/PermissionSummaryDTO"}}}},"PermissionSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"EditionModulesLayer2DTO":{"required":["endDate","enrollability","id","isArchived","name","startDate"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"isArchived":{"type":"boolean"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]},"modules":{"type":"array","items":{"$ref":"#/components/schemas/ModuleSummaryDTO"}}}},"ModuleSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"PersonDetailsDTO":{"required":["defaultRole","displayName","externalId","id","number","username"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"externalId":{"type":"string"},"username":{"type":"string"},"displayName":{"type":"string"},"email":{"type":"string"},"defaultRole":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"number":{"type":"integer","format":"int32"},"accountDisabled":{"type":"boolean"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionWithoutPersonLayer1DTO"}},"roles":{"type":"array","items":{"$ref":"#/components/schemas/RoleEditionLayer1DTO"}}}},"RoleEditionLayer1DTO":{"required":["edition","id","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"edition":{"$ref":"#/components/schemas/EditionModulesLayer2DTO"}}},"SubmissionWithoutPersonLayer1DTO":{"required":["assignment","group","id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"submissionTime":{"type":"string","format":"date-time"},"approvalTime":{"type":"string","format":"date-time"},"assignment":{"$ref":"#/components/schemas/AssignmentSummaryDTO"},"group":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}},"AssignmentIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"EditionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"ModuleDivisionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"ModulePatchDTO":{"type":"object","properties":{"name":{"type":"string"},"edition":{"$ref":"#/components/schemas/EditionIdDTO"},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentIdDTO"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupIdDTO"}},"divisions":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionIdDTO"}}}},"StudentGroupIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"RolePersonLayer1DTO":{"required":["id","person","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"person":{"$ref":"#/components/schemas/PersonSummaryDTO"}}},"StudentGroupDetailsDTO":{"required":["assignmentsSubmitted","capacity","id","memberUsernames","members","module","name","submissions"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"division":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"},"memberUsernames":{"type":"array","items":{"type":"string"}},"assignmentsSubmitted":{"type":"object","additionalProperties":{"type":"boolean"}},"module":{"$ref":"#/components/schemas/ModuleSummaryDTO"},"members":{"type":"array","items":{"$ref":"#/components/schemas/RolePersonLayer1DTO"}},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionSummaryDTO"}}}},"SubmissionSummaryDTO":{"required":["id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"submissionTime":{"type":"string","format":"date-time"},"approvalTime":{"type":"string","format":"date-time"}}},"BuildingDetailsDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"abbreviation":{"type":"string"},"description":{"type":"string"},"address":{"$ref":"#/components/schemas/Address"},"rooms":{"type":"array","items":{"$ref":"#/components/schemas/RoomSummaryDTO"}}}},"CourseDetailsDTO":{"required":["code","id","isArchived","manager","name","program"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"code":{"type":"string"},"isArchived":{"type":"boolean"},"program":{"$ref":"#/components/schemas/ProgramSummaryDTO"},"manager":{"$ref":"#/components/schemas/PersonSummaryDTO"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}},"ProgramSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"GradeSummaryDTO":{"required":["gradedAt","id","isScriptGraded","scheme","score"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"scheme":{"type":"string","enum":["PASS_FAIL","DUTCH_GRADE","DUTCH_GRADE_1000","SCORE_OUT_OF_10","SCORE_OUT_OF_100","SCORE_OUT_OF_1000","SCORE_OUT_OF_10000","UNLIMITED"]},"score":{"type":"integer","format":"int32"},"gradedAt":{"type":"string","format":"date-time"},"isScriptGraded":{"type":"boolean"}}},"SubmissionDetailsDTO":{"required":["assignment","grades","group","id","submitter"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"submissionTime":{"type":"string","format":"date-time"},"approvalTime":{"type":"string","format":"date-time"},"submitter":{"$ref":"#/components/schemas/PersonSummaryDTO"},"assignment":{"$ref":"#/components/schemas/AssignmentSummaryDTO"},"group":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"},"grades":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/GradeSummaryDTO"}}}},"RolePatchDTO":{"type":"object","properties":{"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}},"BuildingSummaryDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"abbreviation":{"type":"string"},"description":{"type":"string"},"address":{"$ref":"#/components/schemas/Address"}}},"RoomDetailsDTO":{"required":["building","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"abbreviation":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"description":{"type":"string"},"building":{"$ref":"#/components/schemas/BuildingSummaryDTO"}}},"CohortCreateDTO":{"required":["name","program"],"type":"object","properties":{"name":{"type":"string"},"program":{"$ref":"#/components/schemas/ProgramIdDTO"}}},"ProgramIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"LCPageable":{"required":["page","size"],"type":"object","properties":{"page":{"minimum":0,"type":"integer","format":"int32"},"size":{"minimum":1,"type":"integer","format":"int32"},"sort":{"type":"string"}}},"EditionDetailsDTO":{"required":["cohort","course","editionCollections","endDate","enrollability","id","isArchived","modules","name","sessions","startDate"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"isArchived":{"type":"boolean"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"enrollability":{"type":"string","enum":["CLOSED","OPEN","OPEN_TO_PROGRAM"]},"course":{"$ref":"#/components/schemas/CourseSummaryDTO"},"cohort":{"$ref":"#/components/schemas/CohortSummaryDTO"},"modules":{"type":"array","items":{"$ref":"#/components/schemas/ModuleSummaryDTO"}},"editionCollections":{"type":"array","items":{"$ref":"#/components/schemas/EditionCollectionSummaryDTO"}},"sessions":{"type":"array","items":{"$ref":"#/components/schemas/SessionSummaryDTO"}}}},"PageEditionDetailsDTO":{"type":"object","properties":{"totalPages":{"type":"integer","format":"int32"},"totalElements":{"type":"integer","format":"int64"},"number":{"type":"integer","format":"int32"},"sort":{"$ref":"#/components/schemas/Sort"},"size":{"type":"integer","format":"int32"},"content":{"type":"array","items":{"$ref":"#/components/schemas/EditionDetailsDTO"}},"pageable":{"$ref":"#/components/schemas/Pageable"},"numberOfElements":{"type":"integer","format":"int32"},"first":{"type":"boolean"},"last":{"type":"boolean"},"empty":{"type":"boolean"}}},"Pageable":{"type":"object","properties":{"sort":{"$ref":"#/components/schemas/Sort"},"offset":{"type":"integer","format":"int64"},"pageNumber":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"paged":{"type":"boolean"},"unpaged":{"type":"boolean"}}},"SessionSummaryDTO":{"required":["end","id","name","start"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"}}},"Sort":{"type":"object","properties":{"sorted":{"type":"boolean"},"unsorted":{"type":"boolean"},"empty":{"type":"boolean"}}},"ClusterSummaryDTO":{"required":["id"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"CohortDetailsDTO":{"required":["id","name","program"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"program":{"$ref":"#/components/schemas/ProgramSummaryDTO"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/ClusterSummaryDTO"}}}},"CourseCreateDTO":{"required":["code","manager","name"],"type":"object","properties":{"name":{"type":"string"},"code":{"type":"string"},"program":{"$ref":"#/components/schemas/ProgramIdDTO"},"manager":{"$ref":"#/components/schemas/PersonIdDTO"}}},"RoomIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"SingleSessionCreateDTO":{"required":["edition","end","name","rooms","start"],"type":"object","properties":{"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"},"rooms":{"type":"array","items":{"$ref":"#/components/schemas/RoomIdDTO"}},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentIdDTO"}},"edition":{"$ref":"#/components/schemas/EditionIdDTO"}}},"APIKeySummaryDTO":{"required":["createdAt","enabled","expiresAt","id","key","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"expiresAt":{"type":"string","format":"date-time"},"enabled":{"type":"boolean"},"key":{"type":"string"}}},"ModuleDivisionDetailsDTO":{"required":["id","module"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"module":{"$ref":"#/components/schemas/ModuleSummaryDTO"},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonSummaryDTO"}}}},"AssignmentCreateDTO":{"required":["module","name"],"type":"object","properties":{"name":{"type":"string"},"description":{"$ref":"#/components/schemas/Description"},"deadline":{"type":"string","format":"date-time"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}},"module":{"$ref":"#/components/schemas/ModuleIdDTO"}}},"BuildingPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"abbreviation":{"type":"string"},"description":{"type":"string"},"address":{"$ref":"#/components/schemas/Address"},"rooms":{"type":"array","items":{"$ref":"#/components/schemas/RoomIdDTO"}}}},"BuildingIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"RoomPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"abbreviation":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"description":{"type":"string"},"building":{"$ref":"#/components/schemas/BuildingIdDTO"}}},"ModuleDetailsDTO":{"required":["assignments","divisions","edition","groups","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSmallSummaryDTO"}},"divisions":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"}}}},"StudentGroupSmallSummaryDTO":{"required":["capacity","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"capacity":{"type":"integer","format":"int32"}}},"SessionDetailsDTO":{"required":["assignments","editions","end","id","name","rooms","start"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"},"rooms":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/RoomDetailsDTO"}},"assignments":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"},"editionCollection":{"$ref":"#/components/schemas/EditionCollectionSummaryDTO"},"editions":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}},"EditionCollectionPatchDTO":{"type":"object","properties":{"name":{"type":"string"}}},"ProgramCreateDTO":{"required":["director","name"],"type":"object","properties":{"name":{"type":"string"},"director":{"$ref":"#/components/schemas/PersonIdDTO"}}},"ClusterIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"PersonPatchDTO":{"type":"object","properties":{"username":{"type":"string"},"displayName":{"type":"string"},"email":{"type":"string"},"number":{"type":"integer","format":"int32"},"roles":{"type":"array","items":{"$ref":"#/components/schemas/RoleIdDTO"}},"directs":{"type":"array","items":{"$ref":"#/components/schemas/ProgramIdDTO"}},"manages":{"type":"array","items":{"$ref":"#/components/schemas/CourseIdDTO"}},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionIdDTO"}},"programs":{"type":"array","items":{"$ref":"#/components/schemas/ProgramIdDTO"}},"coordinates":{"type":"array","items":{"$ref":"#/components/schemas/ProgramIdDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/ClusterIdDTO"}},"divisions":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionIdDTO"}}}},"SubmissionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"GradeCreateDTO":{"required":["isScriptGraded","scheme","score","submission"],"type":"object","properties":{"scheme":{"type":"string","enum":["PASS_FAIL","DUTCH_GRADE","DUTCH_GRADE_1000","SCORE_OUT_OF_10","SCORE_OUT_OF_100","SCORE_OUT_OF_1000","SCORE_OUT_OF_10000","UNLIMITED"]},"score":{"type":"integer","format":"int32"},"isScriptGraded":{"type":"boolean"},"gradedAt":{"type":"string","format":"date-time"},"submission":{"$ref":"#/components/schemas/SubmissionIdDTO"}}},"PersonCreateDTO":{"required":["number","username"],"type":"object","properties":{"externalId":{"type":"string"},"username":{"type":"string"},"displayName":{"type":"string"},"email":{"type":"string"},"defaultRole":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"number":{"type":"integer","format":"int32"}}},"ParticipantsImportDTO":{"type":"object","properties":{"participants":{"type":"object","additionalProperties":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}}},"StudentGroupPatchDTO":{"type":"object","properties":{"module":{"$ref":"#/components/schemas/ModuleIdDTO"},"capacity":{"type":"integer","format":"int32"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionIdDTO"}},"members":{"type":"array","items":{"$ref":"#/components/schemas/RoleIdDTO"}}}},"ModuleAssignmentsGroupsDetailsDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/StudentGroupSummaryDTO"}}}},"StudentGroupMembersLayer1DTO":{"required":["assignmentsSubmitted","capacity","id","memberUsernames","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"division":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"},"memberUsernames":{"type":"array","items":{"type":"string"}},"assignmentsSubmitted":{"type":"object","additionalProperties":{"type":"boolean"}},"members":{"type":"array","items":{"$ref":"#/components/schemas/RoleSummaryDTO"}}}},"SubmissionMemberDetailsDTO":{"required":["assignment","group","id","submitter"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"submissionTime":{"type":"string","format":"date-time"},"approvalTime":{"type":"string","format":"date-time"},"submitter":{"$ref":"#/components/schemas/PersonSummaryDTO"},"assignment":{"$ref":"#/components/schemas/AssignmentSummaryDTO"},"group":{"$ref":"#/components/schemas/StudentGroupMembersLayer1DTO"}}},"RolePersonDetailsDTO":{"required":["id","person","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"person":{"$ref":"#/components/schemas/PersonSummaryDTO"}}},"SubmissionCreateDTO":{"required":["assignment","group","submitter"],"type":"object","properties":{"submitter":{"$ref":"#/components/schemas/PersonIdDTO"},"assignment":{"$ref":"#/components/schemas/AssignmentIdDTO"},"group":{"$ref":"#/components/schemas/StudentGroupIdDTO"}}},"GradeBatchImportDTO":{"required":["grades","type"],"type":"object","properties":{"type":{"type":"string","enum":["NUMBER","USERNAME","GROUP_NAME"]},"grades":{"type":"array","items":{"$ref":"#/components/schemas/GradeImportDTO"}}}},"GradeImportDTO":{"required":["gradeeId","scheme","score"],"type":"object","properties":{"scheme":{"type":"string","enum":["PASS_FAIL","DUTCH_GRADE","DUTCH_GRADE_1000","SCORE_OUT_OF_10","SCORE_OUT_OF_100","SCORE_OUT_OF_1000","SCORE_OUT_OF_10000","UNLIMITED"]},"score":{"type":"integer","format":"int32"},"isScriptGraded":{"type":"boolean"},"gradedAt":{"type":"string","format":"date-time"},"gradeeId":{"type":"string"}}},"EditionCollectionDetailsDTO":{"required":["id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionSummaryDTO"}}}},"SessionPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"},"rooms":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/RoomIdDTO"}},"assignments":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/AssignmentIdDTO"}}}},"GroupImportDTO":{"required":["groups"],"type":"object","properties":{"groups":{"type":"object","additionalProperties":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}}},"ClusterImportDTO":{"type":"object","properties":{"clusters":{"type":"object","additionalProperties":{"uniqueItems":true,"type":"array","items":{"type":"string"}}}}},"ModuleCreateDTO":{"required":["edition","name"],"type":"object","properties":{"name":{"type":"string"},"edition":{"$ref":"#/components/schemas/EditionIdDTO"}}},"AssignmentDetailsDTO":{"required":["acceptLateSubmissions","allowedFileTypes","description","id","module","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"description":{"$ref":"#/components/schemas/Description"},"deadline":{"type":"string","format":"date-time"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}},"module":{"$ref":"#/components/schemas/ModuleSummaryDTO"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionSummaryDTO"}},"sessions":{"type":"array","items":{"$ref":"#/components/schemas/SessionSummaryDTO"}}}},"RoomCreateDTO":{"required":["name"],"type":"object","properties":{"name":{"type":"string"},"abbreviation":{"type":"string"},"capacity":{"type":"integer","format":"int32"},"description":{"type":"string"},"building":{"$ref":"#/components/schemas/BuildingIdDTO"}}},"CohortPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"program":{"$ref":"#/components/schemas/ProgramIdDTO"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionIdDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/ClusterIdDTO"}}}},"RoleEditionDetailsDTO":{"required":["edition","id","type"],"type":"object","properties":{"id":{"$ref":"#/components/schemas/Id"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"}}},"EditionCollectionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"SharedSessionCreateDTO":{"required":["editionCollection","end","name","rooms","start"],"type":"object","properties":{"name":{"type":"string"},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"description":{"type":"string"},"rooms":{"type":"array","items":{"$ref":"#/components/schemas/RoomIdDTO"}},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentIdDTO"}},"editionCollection":{"$ref":"#/components/schemas/EditionCollectionIdDTO"}}},"APIKeyDetailsDTO":{"required":["createdAt","createdBy","enabled","expiresAt","id","key","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"createdAt":{"type":"string","format":"date-time"},"expiresAt":{"type":"string","format":"date-time"},"enabled":{"type":"boolean"},"key":{"type":"string"},"createdBy":{"$ref":"#/components/schemas/PersonSummaryDTO"},"permissions":{"type":"array","items":{"$ref":"#/components/schemas/PermissionSummaryDTO"}}}},"AssignmentPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"deadline":{"type":"string","format":"date-time"},"description":{"$ref":"#/components/schemas/Description"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}},"module":{"$ref":"#/components/schemas/ModuleIdDTO"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionIdDTO"}},"sessions":{"type":"array","items":{"$ref":"#/components/schemas/SessionIdDTO"}}}},"SessionIdDTO":{"type":"object","properties":{"id":{"type":"integer","format":"int64"}}},"EditionCollectionCreateDTO":{"required":["name"],"type":"object","properties":{"name":{"type":"string"},"editions":{"maxItems":2147483647,"minItems":2,"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/EditionIdDTO"}}}},"AssignmentModuleDetailsDTO":{"required":["acceptLateSubmissions","allowedFileTypes","description","id","module","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"description":{"$ref":"#/components/schemas/Description"},"deadline":{"type":"string","format":"date-time"},"lateSubmissionLeniency":{"type":"integer","format":"int64"},"acceptLateSubmissions":{"type":"boolean"},"approveScript":{"type":"string"},"submissionLimit":{"type":"integer","format":"int32"},"allowedFileTypes":{"uniqueItems":true,"type":"array","items":{"type":"string"}},"module":{"$ref":"#/components/schemas/ModuleLayer1DTO"},"submissions":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionSummaryDTO"}}}},"ModuleLayer1DTO":{"required":["edition","id","name"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"edition":{"$ref":"#/components/schemas/EditionSummaryDTO"},"assignments":{"type":"array","items":{"$ref":"#/components/schemas/AssignmentSummaryDTO"}},"divisions":{"type":"array","items":{"$ref":"#/components/schemas/ModuleDivisionSummaryDTO"}}}},"ClusterCreateDTO":{"required":["cohort"],"type":"object","properties":{"name":{"type":"string"},"cohort":{"$ref":"#/components/schemas/CohortIdDTO"},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonIdDTO"}}}},"RoleCreateDTO":{"required":["edition","person","type"],"type":"object","properties":{"person":{"$ref":"#/components/schemas/PersonIdDTO"},"edition":{"$ref":"#/components/schemas/EditionIdDTO"},"type":{"type":"string","enum":["STUDENT","TA","HEAD_TA","TEACHER","TEACHER_RO","ADMIN","BLOCKED"]}}},"CoursePatchDTO":{"type":"object","properties":{"name":{"type":"string"},"code":{"type":"string"},"isArchived":{"type":"boolean"},"program":{"$ref":"#/components/schemas/ProgramIdDTO"},"manager":{"$ref":"#/components/schemas/PersonIdDTO"},"editions":{"type":"array","items":{"$ref":"#/components/schemas/EditionIdDTO"}}}},"Period":{"type":"object","properties":{"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"}}},"ModuleDivisionCreateDTO":{"type":"object","properties":{"usernames":{"type":"array","items":{"type":"string"}}}},"ProgramPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"director":{"$ref":"#/components/schemas/PersonIdDTO"},"coordinators":{"type":"array","items":{"$ref":"#/components/schemas/PersonIdDTO"}},"courses":{"type":"array","items":{"$ref":"#/components/schemas/CourseIdDTO"}},"cohorts":{"type":"array","items":{"$ref":"#/components/schemas/CohortIdDTO"}},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonIdDTO"}}}},"ClusterPatchDTO":{"type":"object","properties":{"name":{"type":"string"},"cohort":{"$ref":"#/components/schemas/CohortIdDTO"},"people":{"type":"array","items":{"$ref":"#/components/schemas/PersonIdDTO"}}}}}}}
\ No newline at end of file