Skip to content

Commit

Permalink
Update hauteur_max in Schema (#7)
Browse files Browse the repository at this point in the history
* Modify schema for hauteur-max field

* Correct regex + update version in schema

* Update valide csv

* Change Non Applicable Value to N/A instead of NA

* Change minor version 0.1.2 to 0.1.3
  • Loading branch information
geoffreyaldebert authored Apr 29, 2020
1 parent c492f63 commit 0af3d1d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Ce fichier répertorie les changements entre différentes versions d'un schéma.

## Version 0.1.3 - 2020-04-28
- Modification du type et de la règle de validation du champs "hauteur_max"

## Version 0.1.2 - 2020-03-04
- Correction du numéro de SIRET qui était invalide

Expand Down
3 changes: 2 additions & 1 deletion exemple-valide.csv
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
id,nom,insee,adresse,url,type_usagers,gratuit,nb_places,nb_pr,nb_pmr,nb_voitures_electriques,nb_velo,nb_2r_el,nb_autopartage,nb_2_rm,nb_covoit,hauteur_max,num_siret,Xlong,Ylat,tarif_pmr,tarif_1h,tarif_2h,tarif_3h,tarif_4h,tarif_24h,abo_resident,abo_non_resident,type_ouvrage,info
75114-P-001,REPUBLIQUE,75114,"3 rue de la Gare, 92300, Levallois-Peret",https://www.exemple.fr/stationnementrepublique/,tous,true,325,250,250,10,25,5,5,5,5,5,21920044100018,1.452323,46.59698,gratuit,5.5,7.5,10.5,13.5,40,60.99,79.99,ouvrage,Gratuité pour le marché le samedi matin
75114-P-001,REPUBLIQUE,75114,"3 rue de la Gare, 92300, Levallois-Peret",https://www.exemple.fr/stationnementrepublique/,tous,true,325,250,250,10,25,5,5,5,5,290,21920044100018,1.452323,46.59698,gratuit,5.5,7.5,10.5,13.5,40,60.99,79.99,ouvrage,Gratuité pour le marché le samedi matin
75114-P-002,REPUBLIQUE,75114,"3 rue de la Gare, 92300, Levallois-Peret",https://www.exemple.fr/stationnementrepublique/,tous,true,325,250,250,10,25,5,5,5,5,N/A,21920044100018,1.452323,46.59698,gratuit,5.5,7.5,10.5,13.5,40,60.99,79.99,ouvrage,Gratuité pour le marché le samedi matin
Binary file modified exemple-valide.xlsx
100644 → 100755
Binary file not shown.
27 changes: 17 additions & 10 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"countryCode":"FR",
"homepage":"https://github.com/etalab/schema-stationnement",
"path":"https://github.com/etalab/schema-stationnement/raw/v0.1.2/schema.json",
"path":"https://github.com/etalab/schema-stationnement/raw/v0.1.3/schema.json",
"licenses":[
{
"title":"Licence Ouverte",
Expand All @@ -21,22 +21,22 @@
{
"title":"Ressource valide (CSV)",
"name":"exemple-valide-csv",
"path":"https://github.com/etalab/schema-stationnement/raw/v0.1.2/exemple-valide.csv"
"path":"https://github.com/etalab/schema-stationnement/raw/v0.1.3/exemple-valide.csv"
},
{
"title":"Ressource valide (XLSX)",
"name":"exemple-valide-xlsx",
"path":"https://github.com/etalab/schema-stationnement/raw/v0.1.2/exemple-valide.xlsx"
"path":"https://github.com/etalab/schema-stationnement/raw/v0.1.3/exemple-valide.xlsx"
},
{
"title":"Ressource invalide",
"name":"exemple-invalide",
"path":"https://github.com/etalab/schema-stationnement/raw/v0.1.2/exemple-invalide.csv"
"path":"https://github.com/etalab/schema-stationnement/raw/v0.1.3/exemple-invalide.csv"
}
],
"created":"2019-12-13",
"lastModified":"2020-03-04",
"version":"0.1.2",
"lastModified":"2019-04-28",
"version":"0.1.3",
"contributors":[
{
"title":"Pierre Mercé",
Expand Down Expand Up @@ -247,6 +247,12 @@
"email":"antoine.augusti@data.gouv.fr",
"organisation":"Etalab",
"role":"contributor"
},
{
"title":"Geoffrey Aldebert",
"email":"geoffrey.aldebert@data.gouv.fr",
"organisation":"Etalab",
"role":"contributor"
}
],
"author":"transport.data.gouv.fr",
Expand Down Expand Up @@ -423,11 +429,12 @@
},
{
"name":"hauteur_max",
"description":"Hauteur maximale autorisée à la fois pour l'accès au parking et pour le stationnement du véhicule, en centimètres.",
"example":"5",
"type":"integer",
"description":"Hauteur maximale autorisée à la fois pour l'accès au parking et pour le stationnement du véhicule, en centimètres. S'il n'y a pas de hauteur maximale, il est possible de renseigner ce champs avec la valeur `N/A`.",
"example":"290",
"type":"string",
"constraints":{
"required":true
"required":true,
"pattern":"^(\\d+|N\/A)$"
}
},
{
Expand Down

0 comments on commit 0af3d1d

Please sign in to comment.