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.
|
|
|
type: object
|
|
|
|
description: DTO pour l'affichage des détails d'une formation.
|
|
|
|
properties:
|
|
|
|
id:
|
|
|
|
type: integer
|
|
|
|
format: int64
|
|
|
|
description: Id de la formation
|
|
|
|
intitule:
|
|
|
|
type: string
|
|
|
|
description: Intitulé de la formation
|
|
|
|
statut:
|
|
|
|
$ref: ./statutFormation.yaml
|
|
|
|
dateDebut:
|
|
|
|
type: string
|
|
|
|
format: date-time
|
|
|
|
description: Date de début de la formation
|
|
|
|
dateFin:
|
|
|
|
type: string
|
|
|
|
format: date-time
|
|
|
|
description: Date de la dernière séance de la formation
|
|
|
|
organisme:
|
|
|
|
type: string
|
|
|
|
description: Organisme en charge d'effectuer la formation
|
|
|
|
nbParticipations:
|
|
|
|
type: integer
|
|
|
|
description: Nombre de participants de la formation
|
|
|
|
origine:
|
|
|
|
$ref: ./origineFormation.yaml
|
|
|
|
estCertifie:
|
|
|
|
type: boolean
|
|
|
|
description: Indique si la formation est certifiée ou non
|
|
|
|
|
|
|
|
|
|
|
|
required:
|
|
|
|
- id
|
|
|
|
- intitule
|
|
|
|
- origine
|
|
|
|
- statut
|
|
|
|
- dateDebut
|
|
|
|
- dateFin
|
|
|
|
- nbParticipations
|
|
|
|
- estCertifie
|