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/ep/epSaisie.yaml

49 lines
1.0 KiB

type: object
description: DTO utilisé lors de la saisie du collaborateur ou du référent.
properties:
id:
type: integer
format: int64
description: Id de l’EP
type:
$ref: ../enum/typeEP.yaml
cv:
type: string
description: Nom du CV Apside du collaborateur
choixEntretien:
$ref: ./typeEntretien.yaml
obligatoire:
type: boolean
description: Indique si oui ou non l'EP doit obligatoirement être effectué
objectifs:
type: array
items:
$ref: ./objectif.yaml
objectifsPrecedent:
type: array
items:
$ref: ./objectifPrecedent.yaml
idCollaborateur:
type: string
format: uuid
description: Id du collaborateur qui passe son EP
idReferent:
type: string
format: uuid
description: Id du référent actuel de l'EP
engagements:
type: array
items:
$ref: ../ep/engagement.yaml
augmentationSalaire:
$ref: ./augmentationSalaire.yaml
documents:
type: array
items:
$ref: ./document.yaml
required:
- id
- type
- obligatoire
- documents