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?

optional active?: 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?

optional enrollments?: StudyEnrollment[]

Defined in: api/types.gen.ts:1936

The enrollments associated with this study.


id?

optional id?: number

Defined in: api/types.gen.ts:1918

The unique identifier of a study, assigned incrementally.


nominalDurationYears?

optional nominalDurationYears?: 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?

optional type?: StudyType

Defined in: api/types.gen.ts:1927

On this page