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/formationDetails.yaml

37 lines
587 B

4 years ago
type: object
description: Les détails d'une formation
properties:
id:
type: integer
4 years ago
format: int64
4 years ago
intitule:
type: string
statut:
$ref: ./statutFormation.yaml
dateDebut:
type: string
format: date-time
dateFin:
type: string
format: date-time
nbPartitipants:
type: integer
4 years ago
origine:
$ref: ./origineFormation.yaml
4 years ago
mode:
$ref: ./modeFormation.yaml
type:
$ref: ./typeFormation.yaml
estCertifie:
type: boolean
required:
- intitule
- status
- dateDebut
- dateFin
- nbPartitipants
- mode
- type
- estCertifie