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