enregistrement
Résultats des élections présidentielles 2017
Modèle de données
Cliquez pour déplier Cliquez pour replier
Schéma JSON
L'objet JSON ci dessous est une description standardisée du modèle de votre jeu de données. Pour en savoir plus sur JSON schema.
{
- "title":"resultats-des-elections-presidentielles-2017",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/resultats-des-elections-presidentielles-2017"
}
] - "definitions":{
- "resultats-des-elections-presidentielles-2017":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/resultats-des-elections-presidentielles-2017_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "resultats-des-elections-presidentielles-2017_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "scrutin":,{
- "type":"string",
- "title":"Scrutin",
- "description":""
} - "tour":,{
- "type":"integer",
- "title":"Tour",
- "description":""
} - "date":,{
- "type":"string",
- "format":"date",
- "title":"Date",
- "description":""
} - "commune":,{
- "type":"string",
- "title":"Commune",
- "description":""
} - "code_commune":,{
- "type":"string",
- "title":"Code_commune",
- "description":"Code INSEE de la commune"
} - "lieu_vote":,{
- "type":"string",
- "title":"Lieu_vote",
- "description":"Il y a 20 lieux de vote à Saint-Malo, comportant chacun entre 1 et 5 bureaux de vote."
} - "localisation_vote":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Localisation_vote",
- "description":"Coordonnées GPS du lieu de vote"
} - "niveau_detail":,{
- "type":"string",
- "title":"Niveau_detail",
- "description":""
} - "bureau":,{
- "type":"integer",
- "title":"Bureau",
- "description":"Numéro du bureau dépendant du lieu de vote"
} - "inscrits":,{
- "type":"integer",
- "title":"Inscrits",
- "description":"Nombre d'inscrits sur la liste électorale du bureau"
} - "votants":,{
- "type":"integer",
- "title":"Votants",
- "description":"Nombre de votants"
} - "votants_100":,{
- "type":"number",
- "title":"Votants_100",
- "description":"Pourcentage de votants par rapport aux inscrits. C'est le "taux de participation".",
- "unit":"%"
} - "blancs":,{
- "type":"integer",
- "title":"Blancs",
- "description":"Nombre de bulletins blancs"
} - "nuls":,{
- "type":"integer",
- "title":"Nuls",
- "description":"Nombre de bulletins nuls"
} - "exprimes":,{
- "type":"integer",
- "title":"Exprimés",
- "description":"Nombre de suffrages exprimés : c'est le nombre de votants auquel on retranche les nombres de bulletins blancs ou nuls."
} - "exprimes_100":,{
- "type":"number",
- "title":"Exprimés_100",
- "description":"Pourcentage de suffrages exprimés par rapport aux nombre de votants",
- "unit":"%"
} - "candidat1_nom":,{
- "type":"string",
- "title":"Candidat1_NOM",
- "description":""
} - "candidat1_voix":,{
- "type":"integer",
- "title":"Candidat1_VOIX",
- "description":""
} - "candidat1_100":,{
- "type":"number",
- "title":"Candidat1_100",
- "description":"",
- "unit":"%"
} - "candidat2_nom":,{
- "type":"string",
- "title":"Candidat2_NOM",
- "description":""
} - "candidat2_voix":,{
- "type":"integer",
- "title":"Candidat2_VOIX",
- "description":""
} - "candidat2_100":,{
- "type":"number",
- "title":"Candidat2_100",
- "description":"",
- "unit":"%"
} - "candidat3_nom":,{
- "type":"string",
- "title":"Candidat3_NOM",
- "description":""
} - "candidat3_voix":,{
- "type":"integer",
- "title":"Candidat3_VOIX",
- "description":""
} - "candidat3_100":,{
- "type":"number",
- "title":"Candidat3_100",
- "description":"",
- "unit":"%"
} - "candidat4_nom":,{
- "type":"string",
- "title":"Candidat4_NOM",
- "description":""
} - "candidat4_voix":,{
- "type":"integer",
- "title":"Candidat4_VOIX",
- "description":""
} - "candidat4_100":,{
- "type":"number",
- "title":"Candidat4_100",
- "description":"",
- "unit":"%"
} - "candidat5_nom":,{
- "type":"string",
- "title":"Candidat5_NOM",
- "description":""
} - "candidat5_voix":,{
- "type":"integer",
- "title":"Candidat5_VOIX",
- "description":""
} - "candidat5_100":,{
- "type":"number",
- "title":"Candidat5_100",
- "description":"",
- "unit":"%"
} - "candidat6_nom":,{
- "type":"string",
- "title":"Candidat6_NOM",
- "description":""
} - "candidat6_voix":,{
- "type":"integer",
- "title":"Candidat6_VOIX",
- "description":""
} - "candidat6_100":,{
- "type":"number",
- "title":"Candidat6_100",
- "description":"",
- "unit":"%"
} - "candidat7_nom":,{
- "type":"string",
- "title":"Candidat7_NOM",
- "description":""
} - "candidat7_voix":,{
- "type":"integer",
- "title":"Candidat7_VOIX",
- "description":""
} - "candidat7_100":,{
- "type":"number",
- "title":"Candidat7_100",
- "description":"",
- "unit":"%"
} - "candidat8_nom":,{
- "type":"string",
- "title":"Candidat8_NOM",
- "description":""
} - "candidat8_voix":,{
- "type":"integer",
- "title":"Candidat8_VOIX",
- "description":""
} - "candidat8_100":,{
- "type":"number",
- "title":"Candidat8_100",
- "description":"",
- "unit":"%"
} - "candidat9_nom":,{
- "type":"string",
- "title":"Candidat9_NOM",
- "description":""
} - "candidat9_voix":,{
- "type":"integer",
- "title":"Candidat9_VOIX",
- "description":""
} - "candidat9_100":,{
- "type":"number",
- "title":"Candidat9_100",
- "description":"",
- "unit":"%"
} - "candidat10_nom":,{
- "type":"string",
- "title":"Candidat10_NOM",
- "description":""
} - "candidat10_voix":,{
- "type":"integer",
- "title":"Candidat10_VOIX",
- "description":""
} - "candidat10_100":,{
- "type":"number",
- "title":"Candidat10_100",
- "description":"",
- "unit":"%"
} - "candidat11_nom":,{
- "type":"string",
- "title":"Candidat11_NOM",
- "description":""
} - "candidat11_voix":,{
- "type":"integer",
- "title":"Candidat11_VOIX",
- "description":""
} - "candidat11_100":{
- "type":"number",
- "title":"Candidat11_100",
- "description":"",
- "unit":"%"
}
} - "scrutin":
}
} - "fields":
} - "properties":
} - "resultats-des-elections-presidentielles-2017":
}