lecturer.yaml 380 B

123456789101112131415161718
  1. type: object
  2. description: Single lecturer
  3. properties:
  4. pk:
  5. $ref: ../common/pk.yaml
  6. short:
  7. description: A short name for the lecturer, that is unique
  8. type: string
  9. surname:
  10. description: The surname of the lecturer
  11. type: string
  12. first_name:
  13. description: The first(given name of a lecturer
  14. type: string
  15. required:
  16. - short
  17. - surname
  18. - first_name