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.
34 lines
524 B
34 lines
524 B
4 years ago
|
type: object
|
||
|
description: Les détails d'une formation
|
||
|
properties:
|
||
|
id:
|
||
|
type: integer
|
||
|
intitule:
|
||
|
type: string
|
||
|
statut:
|
||
|
$ref: ./statutFormation.yaml
|
||
|
dateDebut:
|
||
|
type: string
|
||
|
format: date-time
|
||
|
dateFin:
|
||
|
type: string
|
||
|
format: date-time
|
||
|
nbPartitipants:
|
||
|
type: integer
|
||
|
mode:
|
||
|
$ref: ./modeFormation.yaml
|
||
|
type:
|
||
|
$ref: ./typeFormation.yaml
|
||
|
estCertifie:
|
||
|
type: boolean
|
||
|
|
||
|
|
||
|
required:
|
||
|
- intitule
|
||
|
- status
|
||
|
- dateDebut
|
||
|
- dateFin
|
||
|
- nbPartitipants
|
||
|
- mode
|
||
|
- type
|
||
|
- estCertifie
|