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.
openAPIServeurEPA/schemas/formation/participationformation.yaml

35 lines
840 B

type: object
description: DTO concernant la participation à une formation
properties:
id:
4 years ago
type: integer
4 years ago
format: int64
description: Id de la participation formation
dateCreation:
type: string
format: date-time
description: Date à laquelle la participation a été créée
intitule:
4 years ago
type: string
description: Intitulé de la formation
dateDebut:
4 years ago
type: string
format: date-time
description: Date de début de la formation
statut:
$ref: ./statutFormation.yaml
4 years ago
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
4 years ago
- estEvaluee