| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- type: object
- description: Single blockclass entry
- properties:
- weekday:
- description: Not used
- type: "null"
- from:
- description: Time the module starts in seconds since midnight (not used, always 0)
- type: integer
- format: int32
- to:
- description: Time the module starts in seconds since midnight (not used, always 0)
- type: integer
- format: int32
- class:
- description: Class name this block module is part of
- type: string
- name:
- description: Short name of the module
- type: string
- rooms:
- description: The rooms which are reserved for this module
- type: array
- items:
- type: string
- lecturers:
- description: The lecturers names that are teaching this module
- type: array
- items:
- type: string
- teaching_type:
- description: Type of teaching
- $ref: ../../enums/teaching-type.yaml
- pages:
- description: The pages, on which the module can be found
- type: array
- items:
- type: integer
- format: int16
- degree_prg:
- description: Name of the degree program this module is part of
- type: string
- part_of_other_classes:
- description: List of other classes, where this module is also taught
- type: array
- items:
- type: string
- pk:
- description: Unique identifier for this blockmodule
- type: string
- required:
- - weekday
- - from
- - to
- - class
- - name
- - rooms
- - lecturers
- - teaching_type
- - pages
- - degree_prg
- - part_of_other_classes
- - pk
|