Definitions
Course Managment Terminology
To Do
Define any CM-centric terms (non enterprise data) here...
Data Dictionary
Here's our current LMS-centric view of enterprise data across the surveyed institutions. Many of the fields are optional and can be null.
- Membership - A user-role pair associated with something.
- Enrollment - The official relationship of a student to something that gets a final grade (or equivalent), including StudentUid, EnrollmentStatus, GradingScheme, Points, and so on.
- CourseSet - Models "School" and "Department" as well as more ad hoc groupings. Includes a name, other CourseSets, CanonicalCourses, and Memberships (users with roles).
- CanonicalCourse - Aspects of a course that stay the same across instances of a course. The CanonicalCourse exists whether there's any instances of the course or not. Includes a name, a department, a title, a number, a description, and cross-listed CanonicalCourses, among other things.
- AcademicSession - An institutional context for CourseOfferings, distinguishing one instance of a course from another. It generally has both a short name and a longer descriptive name. In higher educational institutions, it almost always includes a time range. However, self-paced "sessions" are apparently also possible. At any rate, AcademicSession includes a notion of ordering and currency to support queries such as "Find all current course offerings" and "Sort past course offerings in reverse session order".
- CourseOffering - An instance of a course. Includes a name, default instructors and possibly other Memberships, a Term, Sections, EnrollmentSections, and cross-listed CourseOfferings.
- Section - Models a "cohort" (a stable group which enrolls in multiple courses as a unit) as well as officially delimited course "groups" and "sections". Includes a name, a SectionCategory, Memberships (notably students, although possibly also instructors and TAs), and possibly other Sections. Depending on the institution and the circumstances, section memberships might include people from different CourseOfferings, or might be restricted to the sum of EnrollmentSections in a CourseOffering, or might be restricted to the members of a single EnrollmentSection. But such business rules are taken care of by the enterprise system; so far as we know, the LMS/CMS/CLE doesn't have to know about them.
- EnrollmentSet - This lets the LMS/CMS/CLE ask the question "Who is allowed to submit the final grade for this student, and what is the grade for?" Includes Enrollments, official graders, a CourseOffering, and an enterprise integration ID. Every Enrollment appears in one and only one EnrollmentSet. In contrast, any student might have Memberships in any number of Sections. An EnrollmentSet is often very tightly associated with a Section. This is a common enough case that we may find it worthwhile to create an "EnrollmentSection" to combine the two interfaces. At UC Berkeley, the type of Section associated with an EnrollmentSet is called a "Primary Section". At some other schools, it's just called a "Section". At some institutions (U. Arizona and UC Davis, for example) a single student might be in multiple EnrollmentSets for a single CourseOffering (and therefore receive multiple final grades from different instructors for a single course). At still other institutions, there's just one EnrollmentSet for the whole course: students enroll in the course and pick their sections afterwards. In either case, users tend not to think of the EnrollmentSet as a separate object, but instead identify it with the associated Section or CourseOffering attributes.