Study
Type Alias: Study
[object Object]
Defined in: app/api/types.gen.ts:1021
Represents a study program. A Study has a unique identifier, a title, a nominal duration in years, and a type (e.g., Bachelor, Master). Each Study can have multiple enrollments associated with it through the StudyEnrollment entity. This entity is used to manage and organize different study programs within the system, allowing for better tracking of student enrollments and academic programs offered by the organization.
Properties
enrollments?
optionalenrollments?:StudyEnrollment[]
Defined in: app/api/types.gen.ts:1038
The enrollments associated with this study.
id?
optionalid?:number
Defined in: app/api/types.gen.ts:1025
The unique identifier of a study, assigned incrementally.
nominalDurationYears?
optionalnominalDurationYears?:number
Defined in: app/api/types.gen.ts:1033
The default duration of the study in years.
title
[object Object]
Defined in: app/api/types.gen.ts:1029
The title of the study.
type?
optionaltype?:StudyType
Defined in: app/api/types.gen.ts:1034