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/demandeformation/demandeFormation.yaml

42 lines
776 B

type: object
description: Les détails d'une demande de formation
properties:
id:
type: integer
format: int64
libelle:
type: string
description:
type: string
demandeRH:
type: boolean
default: false
dateDemande:
type: string
format: date-time
etatDemande:
$ref: ../enum/etatDemande.yaml
commentaireRefus:
type: string
dateDerniereReponse:
type: string
format: date-time
theme:
$ref: ./theme.yaml
origine:
$ref: ./origineDemandesFormation.yaml
collaborateur:
$ref: ../collaborateur/collaborateur.yaml
ep:
$ref: ../ep/epInformations.yaml
formation:
$ref: ../formation/formation.yaml
required:
- libelle
- description
- demandeRH
- dateDemande
- etatDemande
- ep
- theme