You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
841 B
35 lines
841 B
type: object
|
|
description: DTO concernant la participation à une formation.
|
|
properties:
|
|
id:
|
|
type: integer
|
|
format: int64
|
|
description: Id de la participation formation
|
|
dateCreation:
|
|
type: string
|
|
format: date-time
|
|
description: Date à laquelle la participation a été créée
|
|
intitule:
|
|
type: string
|
|
description: Intitulé de la formation
|
|
dateDebut:
|
|
type: string
|
|
format: date-time
|
|
description: Date de début de la formation
|
|
statut:
|
|
$ref: ./statutFormation.yaml
|
|
collaborateur:
|
|
$ref: ../collaborateur/collaborateur.yaml
|
|
estEvaluee:
|
|
type: boolean
|
|
description: Indique si le collaborateur a effectué l'évaluation de la formation
|
|
ep:
|
|
$ref: ../ep/epInformations.yaml
|
|
|
|
required:
|
|
- dateCreation
|
|
- intitule
|
|
- dateDebut
|
|
- statut
|
|
- collaborateur
|
|
- estEvaluee |