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/demandeepi/demandeEPI.yaml

32 lines
783 B

type: object
description: DTO pour afficher et gérer les demandes d'EPI.
properties:
id:
type: integer
format: int64
description: Id de la demande d'EPI
collaborateur:
$ref: ../collaborateur/collaborateur.yaml
referent:
$ref: ../collaborateur/collaborateur.yaml
dateDemande:
type: string
format: date-time
description: Date à laquelle la demande d'EPI a été effectué
etatDemande:
$ref: ../enum/etatDemande.yaml
dateReponse:
type: string
format: date-time
description: Date à laquelle le référent a répondu
raisonRefus:
type: string
description: Raison pour laquelle la demande d'EPI a été rejeté
ep:
$ref: ../ep/epInformations.yaml
required:
- collaborateur
- dateDemande
- etatDemande