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.

95 lines
2.3 KiB

type: object
description: DTO contenant l'ensemble des informations d'un EP.
properties:
id:
4 years ago
type: integer
format: int64
description: Id de l’EP
type:
$ref: ../enum/typeEP.yaml
dateDisponibilite:
type: string
format: date-time
description: Date à partir de laquelle l'EP peut être saisi
datePrevisionnelle:
type: string
format: date-time
description: Date à laquelle l'EP est prévu, la date par défaut est celle de l'anniversaire du collaborateur (+6 mois pour EPS)
dateSignatureCollaborateur:
type: string
format: date-time
description: Date à laquelle le collaborateur a signé l'EP
dateSignatureReferent:
type: string
format: date-time
description: Date à laquelle le référent a signé l'EP
dateSaisie:
type: string
format: date-time
description: Date à laquelle l’EP a été saisi par le collaborateur
4 years ago
statut:
$ref: ../enum/statutEP.yaml
cv:
type: string
description: Nom du CV Apside du collaborateur
4 years ago
propositionsEntretien:
type: array
items:
$ref: ./rdvEntretien.yaml
rdvEntretien:
$ref: ./rdvEntretien.yaml
choixTypeEntretien:
$ref: ./typeEntretien.yaml
obligatoire:
type: boolean
description: Indique si oui ou non l'EP doit obligatoirement être effectué
objectifs:
4 years ago
type: array
items:
$ref: ./objectif.yaml
objectifsPrecedent:
4 years ago
type: array
items:
$ref: ./objectifPrecedent.yaml
collaborateur:
$ref: ../collaborateur/collaborateur.yaml
referent:
$ref: ../collaborateur/collaborateur.yaml
demandesFormation:
type: array
items:
4 years ago
$ref: ../demandeformation/demandeFormation.yaml
participants:
type: array
items:
4 years ago
$ref: ./participationEP.yaml
engagements:
type: array
items:
4 years ago
$ref: ../ep/engagement.yaml
augmentationSalaire:
4 years ago
$ref: ./augmentationSalaire.yaml
demandesDelegation:
type: array
items:
4 years ago
$ref: ../demandedelegation/demandeDelegation.yaml
demandeEPI:
$ref: ../demandeepi/demandeEPI.yaml
documents:
type: array
items:
$ref: ./document.yaml
commentairesAssistant:
type: array
items:
$ref: ./commentaireAssistant.yaml
required:
- id
- type
- dateDisponibilite
- datePrevisionnelle
4 years ago
- statut
- cv
- obligatoire
- objectifs
- documents