struct CourseList { map<string, vector<Offerings>> departments; };
Represents all the courses offered in a given study session.
map<string, vector<Offerings>> departments;
Maps department codes for which courses are offered to lists of courses offered in that department.