-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(data): add glossary terms to dataset (#977)
fix #976
- Loading branch information
Showing
4 changed files
with
3,574 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Glossary | ||
|
||
This project extracts glossary terms from a [google spreadsheet](https://docs.google.com/spreadsheets/d/1WrmotMiu4kBxRTKW47Q3CzNjxc0GycfAilSHcXH_hfA/edit#gid=0) and transform the result into a json file. | ||
|
||
## Generate the glossary file | ||
|
||
```bash | ||
$ yarn start | ||
``` | ||
|
||
## Sample content | ||
```json | ||
[ | ||
{ | ||
"term": "Accord interentreprises", | ||
"definition_cdtn": "Accord collectif conclu au niveau de plusieurs entreprises n'appartenant pas au même groupe." | ||
}, | ||
{ | ||
"term": "accord national interprofessionnel", | ||
"abbrev": "ANI", | ||
"synonym": "accords de grenelle \naccords matignon \naccords parodi", | ||
"definition": "Accord collectif négocié au niveau national, couvrant l’ensemble des secteurs d’activités professionnelles et validé selon des modalités précisées par l’article L. 2232-2 du code du travail", | ||
"definition_cdtn": "Accord collectif conclu au niveau national qui s'applique à plusieurs branches professionnelles. " | ||
}, | ||
{ | ||
"term": "protocole d'accord préélectoral", | ||
"abbrev": "PAP", | ||
"synonym": "protocole préélectoral\naccord préélectoral", | ||
"definition_cdtn": " Accord spécifique négocié entre l'employeur et les syndicats pour organiser les élections professionnelles des représentants du personnel (modalités d'organisation et de déroulement des élections, répartition des sièges...)" | ||
} | ||
] | ||
``` |
Oops, something went wrong.