Study
Type Alias: Study
[object Object]
Defined in: api/types.gen.ts:1914
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
active?
optionalactive?:boolean
Defined in: api/types.gen.ts:1932
Status of the study. Inactive studies are hidden from the public registration form, but are preserved in the database for historical records and statistics.
enrollments?
optionalenrollments?:StudyEnrollment[]
Defined in: api/types.gen.ts:1936
The enrollments associated with this study.
id?
optionalid?:number
Defined in: api/types.gen.ts:1918
The unique identifier of a study, assigned incrementally.
nominalDurationYears?
optionalnominalDurationYears?:number
Defined in: api/types.gen.ts:1926
The default duration of the study in years.
title
[object Object]
Defined in: api/types.gen.ts:1922
The title of the study.
type?
optionaltype?:StudyType
Defined in: api/types.gen.ts:1927