Skip to content

Commit

Permalink
feat(stages): renommage salaire vers remuneration (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliebrunetto83 authored Mar 5, 2024
1 parent 11f1dc9 commit 29a34c0
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@
"type": "date",
"required": false
},
"salaireMin": {
"remunerationMin": {
"min": 0,
"type": "decimal"
},
"salaireMax": {
"remunerationMax": {
"type": "decimal",
"min": 0
},
"periodeSalaire": {
"remunerationPeriode": {
"type": "enumeration",
"enum": [
"HOURLY",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"name": "MIT",
"url": "https://github.com/DNUM-SocialGouv/1j1s-stage-orchestrateur-transform-load/blob/main/LICENSE"
},
"x-generation-date": "2024-02-05T13:24:43.926Z"
"x-generation-date": "2024-03-05T08:19:44.938Z"
},
"x-strapi-config": {
"path": "/documentation",
Expand Down Expand Up @@ -5951,6 +5951,22 @@
"dateDeDebutMax": {
"type": "string",
"format": "date"
},
"remunerationMin": {
"type": "number",
"format": "float"
},
"remunerationMax": {
"type": "number",
"format": "float"
},
"remunerationPeriode": {
"type": "string",
"enum": [
"HOURLY",
"MONTHLY",
"YEARLY"
]
}
}
}
Expand Down Expand Up @@ -6085,6 +6101,22 @@
"type": "string",
"format": "date"
},
"remunerationMin": {
"type": "number",
"format": "float"
},
"remunerationMax": {
"type": "number",
"format": "float"
},
"remunerationPeriode": {
"type": "string",
"enum": [
"HOURLY",
"MONTHLY",
"YEARLY"
]
},
"createdAt": {
"type": "string",
"format": "date-time"
Expand Down

0 comments on commit 29a34c0

Please sign in to comment.