Study

Type Alias: Study

[object Object]

Defined in: app/api/types.gen.ts:1701

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?

optional enrollments?: StudyEnrollment[]

Defined in: app/api/types.gen.ts:1718

The enrollments associated with this study.


id?

optional id?: number

Defined in: app/api/types.gen.ts:1705

The unique identifier of a study, assigned incrementally.


nominalDurationYears?

optional nominalDurationYears?: number

Defined in: app/api/types.gen.ts:1713

The default duration of the study in years.


title

[object Object]

Defined in: app/api/types.gen.ts:1709

The title of the study.


type?

optional type?: StudyType

Defined in: app/api/types.gen.ts:1714

On this page