Skip to content

Commit

Permalink
Merge pull request #128 from etalab/removing-date-de-fin-from-css-api
Browse files Browse the repository at this point in the history
Setting date fin to null for prestations
  • Loading branch information
Un3x authored Jan 22, 2025
2 parents 913ec4d + a7a1aff commit 2745798
Show file tree
Hide file tree
Showing 37 changed files with 109 additions and 86 deletions.
2 changes: 1 addition & 1 deletion payloads/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ génère une payload par défaut basée sur la spécification OpenAPI associée.
* [Status étudiant boursier](api_particulier_v3_cnous_etudiant_boursier_with_ine) (`/v3/cnous/etudiant_boursier/ine`)
* [Paiements versés par France Travail](api_particulier_v3_france_travail_indemnites_with_identifiant) (`/v3/france_travail/indemnites/identifiant`)
* [Statut demandeur d'emploi](api_particulier_v3_france_travail_statut_with_identifiant) (`/v3/france_travail/statut/identifiant`)
* [Statut élève scolarisé et boursier](api_particulier_v3_men_scolarites_with_civility) (`/v3/men/scolarites/identite`)
* [Statut élève scolarisé](api_particulier_v3_men_scolarites_with_civility) (`/v3/men/scolarites/identite`)
* [Statut étudiant](api_particulier_v3_mesri_statut_etudiant_with_civility) (`/v3/mesri/statut_etudiant/identite`)
* [Statut étudiant](api_particulier_v3_mesri_statut_etudiant_with_france_connect) (`/v3/mesri/statut_etudiant/france_connect`)
* [Statut étudiant](api_particulier_v3_mesri_statut_etudiant_with_ine) (`/v3/mesri/statut_etudiant/ine`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ payload: |-
{
"status": "beneficiaire",
"dateDebut": "1992-11-29",
"dateFin": "1993-11-29"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
{
"status": "beneficiaire",
"dateDebut": "1992-11-29",
"dateFin": "1993-11-29"
"dateFin": null
}
```

Expand Down Expand Up @@ -242,7 +242,7 @@ L'endpoint est appellé avec le jeton FranceConnect + le recipient.
{
"status": "beneficiaire",
"dateDebut": "2021-05-05",
"dateFin": "2022-05-05"
"dateFin": null
}
```

Expand Down Expand Up @@ -296,7 +296,7 @@ L'endpoint est appellé avec le jeton FranceConnect + le recipient.
{
"status": "beneficiaire",
"dateDebut": "2023-02-01",
"dateFin": "2023-02-01"
"dateFin": null
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ payload: |-
{
"status": "beneficiaire",
"dateDebut": "2021-05-05",
"dateFin": "2022-05-05"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ payload: |-
{
"status": "beneficiaire",
"dateDebut": "2023-02-01",
"dateFin": "2023-02-01"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Titre,Description,Paramètres,Status,Réponse
,## Bénéficiaire,"{""nomNaissance"":""LALANNE"",""prenoms"":[""FRANCIS"",""GERARD""],""anneeDateDeNaissance"":2002,""moisDateDeNaissance"":11,""jourDateDeNaissance"":1,""codeInseeLieuDeNaissance"":""08480"",""codePaysLieuDeNaissance"":""99100"",""sexe"":""M""}",200,"{
""status"": ""beneficiaire"",
""dateDebut"": ""1992-11-29"",
""dateFin"": ""1993-11-29""
""dateFin"": null
}"
,## Non bénéficiaire,"{""nomUsage"":""DEPARDIEU"",""nomNaissance"":""BERGERAC"",""prenoms"":[""CYRANO""],""anneeDateDeNaissance"":2002,""moisDateDeNaissance"":11,""jourDateDeNaissance"":1,""codeInseeLieuDeNaissance"":""08480"",""codePaysLieuDeNaissance"":""99100"",""sexe"":""M""}",200,"{
""status"": ""non_beneficiaire"",
Expand All @@ -24,12 +24,12 @@ Les données proviennent de [nos propres jetons FranceConnect de test](../france
L'endpoint est appellé avec le jeton FranceConnect + le recipient.","{""prenoms"":[""Georges""],""nomNaissance"":""CNAF"",""anneeDateDeNaissance"":2002,""moisDateDeNaissance"":1,""jourDateDeNaissance"":1,""sexe"":""M"",""codeInseeLieuDeNaissance"":""75002"",""codePaysLieuDeNaissance"":""99100""}",200,"{
""status"": ""beneficiaire"",
""dateDebut"": ""2021-05-05"",
""dateFin"": ""2022-05-05""
""dateFin"": null
}"
,"Cas de test avec jeton FranceConnect.
Les données proviennent des jetons de l'environnement de test FranceConnect.
L'endpoint est appellé avec le jeton FranceConnect + le recipient.","{""prenoms"":[""Angela"",""Claire"",""Louise""],""nomNaissance"":""DUBOIS"",""anneeDateDeNaissance"":1962,""moisDateDeNaissance"":8,""jourDateDeNaissance"":24,""sexe"":""F"",""codeInseeLieuDeNaissance"":""75107"",""codePaysLieuDeNaissance"":""99100""}",200,"{
""status"": ""beneficiaire"",
""dateDebut"": ""2023-02-01"",
""dateFin"": ""2023-02-01""
""dateFin"": null
}"
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ payload: |-
{
"status": "beneficiaire_avec_participation_financiere",
"dateDebut": "2023-06-01",
"dateFin": "2024-06-01"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2023-02-01",
"dateFin": "2024-02-01"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_avec_participation_financiere",
"dateDebut": "2023-06-01",
"dateFin": "2024-06-01"
"dateFin": null
}
```

Expand Down Expand Up @@ -97,7 +97,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2023-02-01",
"dateFin": "2024-02-01"
"dateFin": null
}
```

Expand Down Expand Up @@ -309,7 +309,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-10-01",
"dateFin": "2025-10-01"
"dateFin": null
}
```

Expand Down Expand Up @@ -369,7 +369,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2023-08-25",
"dateFin": "2024-08-25"
"dateFin": null
}
```

Expand Down Expand Up @@ -431,7 +431,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_avec_participation_financiere",
"dateDebut": "2024-06-01",
"dateFin": "2025-06-01"
"dateFin": null
}
```

Expand Down Expand Up @@ -494,7 +494,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-08-25",
"dateFin": "2025-08-25"
"dateFin": null
}
```

Expand Down Expand Up @@ -555,7 +555,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-08-25",
"dateFin": "2025-08-25"
"dateFin": null
}
```

Expand Down Expand Up @@ -615,7 +615,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-08-30",
"dateFin": "2025-08-30"
"dateFin": null
}
```

Expand Down Expand Up @@ -675,7 +675,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-11-05",
"dateFin": "2025-11-05"
"dateFin": null
}
```

Expand Down Expand Up @@ -734,7 +734,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-09-05",
"dateFin": "2025-09-05"
"dateFin": null
}
```

Expand Down Expand Up @@ -796,7 +796,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2026-09-29",
"dateFin": "2027-09-29"
"dateFin": null
}
```

Expand Down Expand Up @@ -857,7 +857,7 @@ Ce cas permet de tester :
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-02-02",
"dateFin": "2025-02-02"
"dateFin": null
}
```

Expand Down Expand Up @@ -1037,7 +1037,7 @@ L'endpoint est appellé avec le jeton FranceConnect + le recipient.
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2021-05-05",
"dateFin": "2023-03-03"
"dateFin": null
}
```

Expand Down Expand Up @@ -1091,7 +1091,7 @@ L'endpoint est appellé avec le jeton FranceConnect + le recipient.
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2023-02-01",
"dateFin": "2024-02-01"
"dateFin": null
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-10-01",
"dateFin": "2025-10-01"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2023-08-25",
"dateFin": "2024-08-25"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ payload: |-
{
"status": "beneficiaire_avec_participation_financiere",
"dateDebut": "2024-06-01",
"dateFin": "2025-06-01"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-08-25",
"dateFin": "2025-08-25"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-08-25",
"dateFin": "2025-08-25"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-08-30",
"dateFin": "2025-08-30"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-11-05",
"dateFin": "2025-11-05"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-09-05",
"dateFin": "2025-09-05"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2026-09-29",
"dateFin": "2027-09-29"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2024-02-02",
"dateFin": "2025-02-02"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2021-05-05",
"dateFin": "2023-03-03"
"dateFin": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ payload: |-
{
"status": "beneficiaire_sans_participation_financiere",
"dateDebut": "2023-02-01",
"dateFin": "2024-02-01"
"dateFin": null
}
Loading

0 comments on commit 2745798

Please sign in to comment.