From 9eaef4dbf948b30430e1859ce533d4462bb902ee Mon Sep 17 00:00:00 2001 From: Tykayn Date: Sat, 29 Jul 2023 23:04:11 +0200 Subject: [PATCH] convert to yes no values boolean fields --- .../convert_to_osm_tags.mjs | 78 +- .../osm_output/bornes-from-etalab-974.osm | 1 + ...es-irve-filetered-from-etalab-opendata.osm | 2 +- ...onverted_data_set_filtered_zipcode_91.json | 12616 +++++++--------- ...nverted_data_set_filtered_zipcode_974.json | 8540 +++++------ 5 files changed, 9643 insertions(+), 11594 deletions(-) create mode 100644 mapping_geojson_to_osm_tags/osm_output/bornes-from-etalab-974.osm diff --git a/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs b/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs index 78c27d81..798e256c 100644 --- a/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs +++ b/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs @@ -17,16 +17,15 @@ let boundingBoxCoordinates = { } let filterCoordinates = true -let enableFilterOnDepartment = false -let filterDepartment = 91 +let enableFilterOnDepartment = true +let filterDepartment = 974 let filterZipCode = new RegExp(`^${filterDepartment}`) let filterZipCodeAdresse = new RegExp(` ${filterDepartment}`) let filteredName = '' if (enableFilterOnDepartment) { filteredName = '_filtered_zipcode_' + filterDepartment -} -if (filterOnBoundingBox) { +} else if (filterOnBoundingBox) { filteredName = '_filtered_bbox_' + boundingBoxCoordinates.xMin + '-' + boundingBoxCoordinates.xMax + '_' + boundingBoxCoordinates.yMin + '-' + boundingBoxCoordinates.yMax } let pointCounterMax = 1000000 @@ -39,12 +38,18 @@ if (limitConversionToFirstPoint) { // let sourceFileChargemapJson = './chargemap_data/hurepoix.json' let sourceFileIRVEGeoJson = './etalab_data/latest.json' +let defaultPropertiesOfPoint = { + 'amenity': 'charging_station' +} /** * plan de conversion des clés du jeu de données vers les tags OSM * détail dans le tableau * https://wiki.openstreetmap.org/wiki/France/data.gouv.fr/Bornes_de_Recharge_pour_V%C3%A9hicules_%C3%89lectriques */ let mappingConfigIRVE = { + // ******* nombres + nbre_pdc: 'capacity', + // ******* textes amenity: 'amenity', // conserver le tag de base capacity: 'capacity', // conserver le tag de base nom_amenageur: 'operator', @@ -52,26 +57,36 @@ let mappingConfigIRVE = { nom_operateur: 'operator', telephone_operateur: 'phone', contact_operateur: 'email', // ici, on souhaite convertir la clé contact_operateur=bidule en email=bidule - nbre_pdc: 'capacity', + id_station_itinerance: 'ref:EU:EVSE', id_station_local: 'ref', + + gratuit: 'fee', + paiement_acte: 'authentication:none', + + reservation: 'reservation', + observations: 'note', + nom_station: 'name', + nom_enseigne: 'network', + + // ******* dates + date_mise_en_service: 'start_date', + date_maj: 'source:date', + + // TODO gestion des types dont on doit convertir la valeur + // ******** champs booléens + cable_t2_attache: 'socket:type2_cable', prise_type_ef: 'socket:typee', prise_type_2: 'socket:type2', prise_type_combo_ccs: 'socket:type2_combo', prise_type_chademo: 'socket:chademo', - gratuit: 'fee', - paiement_acte: 'authentication:none', - paiement_cb: 'payment:credit_cards', - reservation: 'reservation', - accessibilite_pmr: 'wheelchair', - date_mise_en_service: 'start_date', - observations: 'note', - date_maj: 'source:date', - nom_station: 'name', - nom_enseigne: 'network', - cable_t2_attache: 'socket:type2_cable', - // TODO gestion des types dont on doit convertir la valeur + // ******** champs plus complexes + horaires: 'opening_hours', // déjà au bon format + + // accessibilite_pmr: 'wheelchair', + // paiement_cb: 'payment:credit_cards', + // station_deux_roues => // ajout de trois tags: // bicycle=yes @@ -80,6 +95,16 @@ let mappingConfigIRVE = { // consolidated_code_postal: "zipcode", } +let listOfBooleanKeys = Object.keys({ + prise_type_ef: 'socket:typee', + prise_type_2: 'socket:type2', + prise_type_combo_ccs: 'socket:type2_combo', + prise_type_chademo: 'socket:chademo', + gratuit: 'fee', + paiement_acte: 'authentication:none', + paiement_cb: 'payment:credit_cards', + cable_t2_attache: 'socket:type2_cable', +}) function debugLog (message) { if (!show_debug) { @@ -179,6 +204,11 @@ function convertDataForIRVE (sourceFilePath, mapping, pointCounterMax, boundingB }) } +function isBooleanKey (pointKeyName) { + + return listOfBooleanKeys.indexOf(pointKeyName) !== -1 +} + /** * retuns the converted element from mapping config if present, null otherwise */ @@ -189,7 +219,7 @@ function mapElementFromConf (featurePoint, mappingConfig) { debugLog('keys', mappingKeys, featurePointPropertiesKeys) - let newProperties = {} + let newProperties = defaultPropertiesOfPoint // reinit properties of current point let basePoint = Object.create(featurePoint) @@ -202,7 +232,17 @@ function mapElementFromConf (featurePoint, mappingConfig) { if (mappingKeys.indexOf(pointKeyName) !== -1) { debugLog('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) - newProperties[mappingConfig[pointKeyName]] = featurePoint.properties[pointKeyName] + let convertedValue = '' + if (isBooleanKey(pointKeyName)) { + + convertedValue = featurePoint.properties[pointKeyName].toLowerCase() == 'true' ? 'yes' : 'no' + } else { + convertedValue = featurePoint.properties[pointKeyName] + } + + if (convertedValue) { + newProperties[mappingConfig[pointKeyName]] = convertedValue + } } }) diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-from-etalab-974.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-from-etalab-974.osm new file mode 100644 index 00000000..ddd86514 --- /dev/null +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-from-etalab-974.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata.osm index 8f3b698f..71767c31 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata.osm @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json index d2d09437..a3ec2bcf 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json @@ -11,28 +11,22 @@ ] }, "properties": { - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "phone": "", - "network": "ELECTRA", - "ref:EU:EVSE": "FRELCPULIHM", - "ref": "", - "name": "Les Ulis - Hôtel Mercure", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -45,28 +39,22 @@ ] }, "properties": { - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "phone": "", - "network": "ELECTRA", - "ref:EU:EVSE": "FRELCPULIHM", - "ref": "", - "name": "Les Ulis - Hôtel Mercure", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -79,28 +67,22 @@ ] }, "properties": { - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "phone": "", - "network": "ELECTRA", - "ref:EU:EVSE": "FRELCPULIHM", - "ref": "", - "name": "Les Ulis - Hôtel Mercure", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -113,28 +95,22 @@ ] }, "properties": { - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "phone": "", - "network": "ELECTRA", - "ref:EU:EVSE": "FRELCPULIHM", - "ref": "", - "name": "Les Ulis - Hôtel Mercure", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -147,28 +123,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "IRVE CAGPS MAGELLAN 3", - "ref:EU:EVSE": "FRCPIE6591135", - "ref": "FRCPIE6591135", - "name": "IRVE CAGPS MAGELLAN 3", - "capacity": "7", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -181,28 +151,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "IRVE CAGPS MAGELLAN 3", - "ref:EU:EVSE": "FRCPIE6591095", - "ref": "FRCPIE6591095", - "name": "IRVE CAGPS MAGELLAN 3", - "capacity": "7", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -215,28 +179,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "IRVE CAGPS MAGELLAN 3", - "ref:EU:EVSE": "FRCPIE6591105", - "ref": "FRCPIE6591105", - "name": "IRVE CAGPS MAGELLAN 3", - "capacity": "7", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -249,28 +207,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "IRVE CAGPS MAGELLAN 3", - "ref:EU:EVSE": "FRCPIE6591115", - "ref": "FRCPIE6591115", - "name": "IRVE CAGPS MAGELLAN 3", - "capacity": "7", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -283,28 +235,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "IRVE CAGPS MAGELLAN 3", - "ref:EU:EVSE": "FRCPIE6591125", - "ref": "FRCPIE6591125", - "name": "IRVE CAGPS MAGELLAN 3", - "capacity": "7", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -317,28 +263,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "IRVE CAGPS MAGELLAN 3", - "ref:EU:EVSE": "FRCPIE6591145", - "ref": "FRCPIE6591145", - "name": "IRVE CAGPS MAGELLAN 3", - "capacity": "7", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -351,28 +291,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "IRVE CAGPS MAGELLAN 3", - "ref:EU:EVSE": "FRCPIE6591165", - "ref": "FRCPIE6591165", - "name": "IRVE CAGPS MAGELLAN 3", - "capacity": "7", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -385,28 +319,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR CONNECT VILLEBON", - "ref:EU:EVSE": "FRCPIE6595995", - "ref": "FRCPIE6595995", - "name": "SONEPAR CONNECT VILLEBON", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -419,28 +347,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR CONNECT VILLEBON", - "ref:EU:EVSE": "FRCPIE6595995", - "ref": "FRCPIE6595995", - "name": "SONEPAR CONNECT VILLEBON", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -453,28 +375,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref:EU:EVSE": "FRIENE007902", - "ref": "FRIENE007902", - "name": "Dourdan", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-27", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -487,28 +403,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref:EU:EVSE": "FRIENE007902", - "ref": "FRIENE007902", - "name": "Dourdan", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-27", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -521,28 +431,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref:EU:EVSE": "FRIENE007901", - "ref": "FRIENE007901", - "name": "Dourdan", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-27", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -555,28 +459,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref:EU:EVSE": "FRIENE007901", - "ref": "FRIENE007901", - "name": "Dourdan", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-27", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -589,28 +487,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR CONNECT ETAMPES", - "ref:EU:EVSE": "FRCPIE6609035", - "ref": "FRCPIE6609035", - "name": "SONEPAR CONNECT ETAMPES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -623,28 +515,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR CONNECT ETAMPES", - "ref:EU:EVSE": "FRCPIE6609035", - "ref": "FRCPIE6609035", - "name": "SONEPAR CONNECT ETAMPES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -657,28 +543,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR VIRY-CHATILLON", - "ref:EU:EVSE": "FRCPIE6628885", - "ref": "FRCPIE6628885", - "name": "SONEPAR VIRY-CHATILLON", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -691,28 +571,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR VIRY-CHATILLON", - "ref:EU:EVSE": "FRCPIE6628885", - "ref": "FRCPIE6628885", - "name": "SONEPAR VIRY-CHATILLON", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-12", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -725,28 +599,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR 3CCLIM VILLEBON", - "ref:EU:EVSE": "FRCPIE6690455", - "ref": "FRCPIE6690455", - "name": "SONEPAR 3CCLIM VILLEBON", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-17", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -759,28 +627,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR 3CCLIM VILLEBON", - "ref:EU:EVSE": "FRCPIE6690455", - "ref": "FRCPIE6690455", - "name": "SONEPAR 3CCLIM VILLEBON", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-17", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -793,28 +655,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR LISSES", - "ref:EU:EVSE": "FRCPIE6758525", - "ref": "FRCPIE6758525", - "name": "SONEPAR LISSES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-07-20", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -827,28 +683,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "", - "email": "info@chargepoint.com", - "phone": "", - "network": "SONEPAR LISSES", - "ref:EU:EVSE": "FRCPIE6758525", - "ref": "FRCPIE6758525", - "name": "SONEPAR LISSES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-07-20", - "note": "EF connector is available at the site separately", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -861,28 +711,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE6011", - "ref": "FR*SOD*S*SIGE*60*1*_*_", - "name": "SIGEIF - PARKING ESPACE SAINT EXEPURY - WISSOUS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-01-07", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -895,28 +739,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE6012", - "ref": "FR*SOD*S*SIGE*60*1*_*_", - "name": "SIGEIF - PARKING ESPACE SAINT EXEPURY - WISSOUS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-01-07", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -929,28 +767,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE5421", - "ref": "FR*SOD*S*SIGE*54*2*_*_", - "name": "SIGEIF - RUE FINOT - MARCOUSSIS", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-05-21", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -963,28 +795,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE5422", - "ref": "FR*SOD*S*SIGE*54*2*_*_", - "name": "SIGEIF - RUE FINOT - MARCOUSSIS", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-05-21", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -997,28 +823,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE5311", - "ref": "FR*SOD*S*SIGE*53*1*_*_", - "name": "SIGEIF - PARKING DES ACACIAS - MARCOUSSIS", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-03-11", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1031,28 +851,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE5312", - "ref": "FR*SOD*S*SIGE*53*1*_*_", - "name": "SIGEIF - PARKING DES ACACIAS - MARCOUSSIS", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-03-11", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1065,28 +879,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE27911", - "ref": "FR*SOD*S*SIGE*279*1*_*_", - "name": "SIGEIF - 36 RUE DE LEGLISE - MORANGIS", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1099,28 +907,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE27912", - "ref": "FR*SOD*S*SIGE*279*1*_*_", - "name": "SIGEIF - 36 RUE DE LEGLISE - MORANGIS", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1133,28 +935,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE28011", - "ref": "FR*SOD*S*SIGE*280*1*_*_", - "name": "SIGEIF - 88 AVENUE ARISTIDE BRIAND - MORANGIS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-14", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1167,28 +963,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE28012", - "ref": "FR*SOD*S*SIGE*280*1*_*_", - "name": "SIGEIF - 88 AVENUE ARISTIDE BRIAND - MORANGIS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-14", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1201,28 +991,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE28612", - "ref": "FR*SOD*S*SIGE*286*1*_*_", - "name": "SIGEIF - PLACE DE LA REPUBLIQUE - MARCOUSSIS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-13", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1235,28 +1019,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE28611", - "ref": "FR*SOD*S*SIGE*286*1*_*_", - "name": "SIGEIF - PLACE DE LA REPUBLIQUE - MARCOUSSIS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-13", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1269,28 +1047,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE30712", - "ref": "FR*SOD*S*SIGE*307*1*_*_", - "name": "SIGEIF - 1 VOIE DE LAULNE - VERRIERES-LE-BUISSON", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-13", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1303,28 +1075,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE30711", - "ref": "FR*SOD*S*SIGE*307*1*_*_", - "name": "SIGEIF - 1 VOIE DE LAULNE - VERRIERES-LE-BUISSON", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-13", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1337,28 +1103,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE30722", - "ref": "FR*SOD*S*SIGE*307*2*_*_", - "name": "SIGEIF - 1 VOIE DE LAULNE - VERRIERES-LE-BUISSON", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1371,28 +1131,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE30721", - "ref": "FR*SOD*S*SIGE*307*2*_*_", - "name": "SIGEIF - 1 VOIE DE LAULNE - VERRIERES-LE-BUISSON", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1405,28 +1159,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE23112", - "ref": "FR*SOD*S*SIGE*231*1*_*_", - "name": "SIGEIF - PLACE DE LA MAIRIE - BIEVRES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-03-10", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1439,28 +1187,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE23111", - "ref": "FR*SOD*S*SIGE*231*1*_*_", - "name": "SIGEIF - PLACE DE LA MAIRIE - BIEVRES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-03-10", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1473,28 +1215,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE37511", - "ref": "FR*SOD*S*SIGE*375*1*_*_", - "name": "SIGEIF - 54 BOULEVARD DU MARECHAL FOCH - VERRIERES-LE-BUISSON", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-22", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1507,28 +1243,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE37521", - "ref": "FR*SOD*S*SIGE*375*2*_*_", - "name": "SIGEIF - 54 BOULEVARD DU MARECHAL FOCH - VERRIERES-LE-BUISSON", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-22", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1541,28 +1271,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE37531", - "ref": "FR*SOD*S*SIGE*375*3*_*_", - "name": "SIGEIF - 54 BOULEVARD DU MARECHAL FOCH - VERRIERES-LE-BUISSON", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-22", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1575,28 +1299,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE37541", - "ref": "FR*SOD*S*SIGE*375*4*_*_", - "name": "SIGEIF - 54 BOULEVARD DU MARECHAL FOCH - VERRIERES-LE-BUISSON", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-22", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1609,28 +1327,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE32112", - "ref": "FR*SOD*S*SIGE*321*1*_*_", - "name": "SIGEIF - 204 RUE DESTIENNE DORVES - VERRIERES-LE-BUISSON", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-30", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1643,28 +1355,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE32111", - "ref": "FR*SOD*S*SIGE*321*1*_*_", - "name": "SIGEIF - 204 RUE DESTIENNE DORVES - VERRIERES-LE-BUISSON", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-30", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1677,28 +1383,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE32411", - "ref": "FR*SOD*S*SIGE*324*1*_*_", - "name": "SIGEIF - 1 ALLEE DES CASTORS - EMPLACEMENT 2 - BIEVRES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-09", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1711,28 +1411,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE32412", - "ref": "FR*SOD*S*SIGE*324*1*_*_", - "name": "SIGEIF - 1 ALLEE DES CASTORS - EMPLACEMENT 2 - BIEVRES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-09", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1745,28 +1439,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE17512", - "ref": "FR*SOD*S*SIGE*175*1*_*_", - "name": "SIGEIF - PLACE DE LA GARE - BIEVRES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-07-22", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1779,28 +1467,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE17511", - "ref": "FR*SOD*S*SIGE*175*1*_*_", - "name": "SIGEIF - PLACE DE LA GARE - BIEVRES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-07-22", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1813,28 +1495,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE19112", - "ref": "FR*SOD*S*SIGE*191*1*_*_", - "name": "SIGEIF - 11 RUE FERNAND LEGER - WISSOUS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-22", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1847,28 +1523,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref:EU:EVSE": "FRSIGPSIGE19111", - "ref": "FR*SOD*S*SIGE*191*1*_*_", - "name": "SIGEIF - 11 RUE FERNAND LEGER - WISSOUS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-22", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1881,28 +1551,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2612", - "ref": "FR*SOD*S*CAPS*26*1*_*_", - "name": "VAUHALLAN - MAIRIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-17", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1915,28 +1579,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2212", - "ref": "FR*SOD*S*CAPS*22*1*_*_", - "name": "LINAS - FIEF DE PLAINVILLE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1949,28 +1607,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2211", - "ref": "FR*SOD*S*CAPS*22*1*_*_", - "name": "LINAS - FIEF DE PLAINVILLE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -1983,28 +1635,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2311", - "ref": "FR*SOD*S*CAPS*23*1*_*_", - "name": "ORSAY - LES PLANCHES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2017,28 +1663,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2312", - "ref": "FR*SOD*S*CAPS*23*1*_*_", - "name": "ORSAY - LES PLANCHES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2051,28 +1691,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2412", - "ref": "FR*SOD*S*CAPS*24*1*_*_", - "name": "IGNY - SARRAUT / FERRY", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2085,28 +1719,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2411", - "ref": "FR*SOD*S*CAPS*24*1*_*_", - "name": "IGNY - SARRAUT / FERRY", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2119,28 +1747,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2511", - "ref": "FR*SOD*S*CAPS*25*1*_*_", - "name": "SACLAY - STADE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2153,28 +1775,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2512", - "ref": "FR*SOD*S*CAPS*25*1*_*_", - "name": "SACLAY - STADE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2187,28 +1803,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2611", - "ref": "FR*SOD*S*CAPS*26*1*_*_", - "name": "VAUHALLAN - MAIRIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-17", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2221,28 +1831,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2112", - "ref": "FR*SOD*S*CAPS*21*1*_*_", - "name": "BURES - GRANDE MAISON", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-07-06", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2255,28 +1859,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2912", - "ref": "FR*SOD*S*CAPS*29*1*_*_", - "name": "NOZAY - CENTRE CULTUREL HOSSEIN", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2289,28 +1887,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2711", - "ref": "FR*SOD*S*CAPS*27*1*_*_", - "name": "VILLEBON - LA POSTE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-03-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2323,28 +1915,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2712", - "ref": "FR*SOD*S*CAPS*27*1*_*_", - "name": "VILLEBON - LA POSTE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-03-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2357,28 +1943,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2811", - "ref": "FR*SOD*S*CAPS*28*1*_*_", - "name": "BALLAINVILLIERS - HAUTS-FRESNAIS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-28", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2391,28 +1971,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2812", - "ref": "FR*SOD*S*CAPS*28*1*_*_", - "name": "BALLAINVILLIERS - HAUTS-FRESNAIS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-28", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2425,28 +1999,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3211", - "ref": "FR*SOD*S*CAPS*32*1*_*_", - "name": "SAINT-AUBIN - ETAPE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-28", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2459,28 +2027,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3112", - "ref": "FR*SOD*S*CAPS*31*1*_*_", - "name": "NOZAY - MEDIATHEQUE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2493,28 +2055,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3111", - "ref": "FR*SOD*S*CAPS*31*1*_*_", - "name": "NOZAY - MEDIATHEQUE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2527,28 +2083,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3011", - "ref": "FR*SOD*S*CAPS*30*1*_*_", - "name": "VILLEJUST - COUDRAYES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2561,28 +2111,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3012", - "ref": "FR*SOD*S*CAPS*30*1*_*_", - "name": "VILLEJUST - COUDRAYES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2595,28 +2139,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2911", - "ref": "FR*SOD*S*CAPS*29*1*_*_", - "name": "NOZAY - CENTRE CULTUREL HOSSEIN", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2629,28 +2167,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2111", - "ref": "FR*SOD*S*CAPS*21*1*_*_", - "name": "BURES - GRANDE MAISON", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-07-06", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2663,28 +2195,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1411", - "ref": "FR*SOD*S*CAPS*14*1*_*_", - "name": "MONTHLERY - CLOS BOUQUET", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2697,28 +2223,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2011", - "ref": "FR*SOD*S*CAPS*20*1*_*_", - "name": "LA VILLE-DU-BOIS - PLACE BEAULIEU", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2731,28 +2251,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS2012", - "ref": "FR*SOD*S*CAPS*20*1*_*_", - "name": "LA VILLE-DU-BOIS - PLACE BEAULIEU", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2765,28 +2279,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS611", - "ref": "FR*SOD*S*CAPS*6*1*_*_", - "name": "ORSAY - PARKING MAIRIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2799,28 +2307,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS811", - "ref": "FR*SOD*S*CAPS*8*1*_*_", - "name": "PALAISEAU - AUVERGNE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-01-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2833,28 +2335,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS812", - "ref": "FR*SOD*S*CAPS*8*1*_*_", - "name": "PALAISEAU - AUVERGNE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-01-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2867,28 +2363,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1011", - "ref": "FR*SOD*S*CAPS*10*1*_*_", - "name": "IGNY - LOR METE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2901,28 +2391,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1012", - "ref": "FR*SOD*S*CAPS*10*1*_*_", - "name": "IGNY - LOR METE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-23", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2935,28 +2419,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1112", - "ref": "FR*SOD*S*CAPS*11*1*_*_", - "name": "LINAS - CHATEAU DEAU", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -2969,28 +2447,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1111", - "ref": "FR*SOD*S*CAPS*11*1*_*_", - "name": "LINAS - CHATEAU DEAU", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3003,28 +2475,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1211", - "ref": "FR*SOD*S*CAPS*12*1*_*_", - "name": "MASSY - SOLOGNE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-17", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3037,28 +2503,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1212", - "ref": "FR*SOD*S*CAPS*12*1*_*_", - "name": "MASSY - SOLOGNE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-17", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3071,28 +2531,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1312", - "ref": "FR*SOD*S*CAPS*13*1*_*_", - "name": "VILLEJUST - ROUTE DE VILLEBON", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3105,28 +2559,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1311", - "ref": "FR*SOD*S*CAPS*13*1*_*_", - "name": "VILLEJUST - ROUTE DE VILLEBON", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3139,28 +2587,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3311", - "ref": "FR*SOD*S*CAPS*33*1*_*_", - "name": "SAULX - BUHOTERIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3173,28 +2615,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1412", - "ref": "FR*SOD*S*CAPS*14*1*_*_", - "name": "MONTHLERY - CLOS BOUQUET", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3207,28 +2643,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1612", - "ref": "FR*SOD*S*CAPS*16*1*_*_", - "name": "PALAISEAU - DR MORERE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3241,28 +2671,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1611", - "ref": "FR*SOD*S*CAPS*16*1*_*_", - "name": "PALAISEAU - DR MORERE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-01-14", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3275,28 +2699,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1712", - "ref": "FR*SOD*S*CAPS*17*1*_*_", - "name": "PALAISEAU - BD STALINGRAD", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-03-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3309,28 +2727,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1711", - "ref": "FR*SOD*S*CAPS*17*1*_*_", - "name": "PALAISEAU - BD STALINGRAD", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-03-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3343,28 +2755,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1811", - "ref": "FR*SOD*S*CAPS*18*1*_*_", - "name": "LA VILLE-DU-BOIS - MAIRIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-19", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3377,28 +2783,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1812", - "ref": "FR*SOD*S*CAPS*18*1*_*_", - "name": "LA VILLE-DU-BOIS - MAIRIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-19", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3411,28 +2811,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1912", - "ref": "FR*SOD*S*CAPS*19*1*_*_", - "name": "BALLAINVILLIERS - STADE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3445,28 +2839,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS1911", - "ref": "FR*SOD*S*CAPS*19*1*_*_", - "name": "BALLAINVILLIERS - STADE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3479,28 +2867,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3212", - "ref": "FR*SOD*S*CAPS*32*1*_*_", - "name": "SAINT-AUBIN - ETAPE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-28", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3513,28 +2895,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3911", - "ref": "FR*SOD*S*CAPS*39*1*_*_", - "name": "GIFS -PEUPLIERS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-11-13", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3547,28 +2923,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3312", - "ref": "FR*SOD*S*CAPS*33*1*_*_", - "name": "SAULX - BUHOTERIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3581,28 +2951,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3411", - "ref": "FR*SOD*S*CAPS*34*1*_*_", - "name": "LA VILLE-DU-BOIS - GRAND NOYER", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3615,28 +2979,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4711", - "ref": "FR*SOD*S*CAPS*47*1*_*_", - "name": "MASSY - ALLEE DE QUEBEC", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-08", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3649,28 +3007,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4911", - "ref": "FR*SOD*S*CAPS*49*1*_*_", - "name": "CHAMPLAN - GYMNASE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-01", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3683,28 +3035,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4912", - "ref": "FR*SOD*S*CAPS*49*1*_*_", - "name": "CHAMPLAN - GYMNASE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-01", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3717,28 +3063,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS5012", - "ref": "FR*SOD*S*CAPS*50*1*_*_", - "name": "CHAMPLAN - JEAN JAURES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-01", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3751,28 +3091,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS5011", - "ref": "FR*SOD*S*CAPS*50*1*_*_", - "name": "CHAMPLAN - JEAN JAURES", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-01", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3785,28 +3119,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS5111", - "ref": "FR*SOD*S*CAPS*51*1*_*_", - "name": "CHAMPLAN - MAIRIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-25", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3819,28 +3147,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS5112", - "ref": "FR*SOD*S*CAPS*51*1*_*_", - "name": "CHAMPLAN - MAIRIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-25", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3853,28 +3175,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS5311", - "ref": "FR*SOD*S*CAPS*53*1*_*_", - "name": "PALAISEAU - 9 ROUTE DE SACLAY", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-11-16", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3887,28 +3203,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS5312", - "ref": "FR*SOD*S*CAPS*53*1*_*_", - "name": "PALAISEAU - 9 ROUTE DE SACLAY", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-11-16", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3921,28 +3231,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS5411", - "ref": "FR*SOD*S*CAPS*54*1*_*_", - "name": "PALAISEAU - 15 ROUTE DE SACLAY", - "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-30", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3955,28 +3259,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS5512", - "ref": "FR*SOD*S*CAPS*55*1*_*_", - "name": "LONGJUMEAU - LEHONTINE SOHIER", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-30", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -3989,28 +3287,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS5511", - "ref": "FR*SOD*S*CAPS*55*1*_*_", - "name": "LONGJUMEAU - LEHONTINE SOHIER", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-30", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4023,28 +3315,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS511", - "ref": "FR*SOD*S*CAPS*5*1*_*_", - "name": "IGNY- PLACE FRANCOIS COLLET", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4057,28 +3343,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS412", - "ref": "FR*SOD*S*CAPS*4*1*_*_", - "name": "GOMETZ - SAINT NICOLAS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-11", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4091,28 +3371,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS411", - "ref": "FR*SOD*S*CAPS*4*1*_*_", - "name": "GOMETZ - SAINT NICOLAS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-11", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4125,28 +3399,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS312", - "ref": "FR*SOD*S*CAPS*3*1*_*_", - "name": "GOMETZ - SALLE BARBARA", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-28", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4159,28 +3427,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS311", - "ref": "FR*SOD*S*CAPS*3*1*_*_", - "name": "GOMETZ - SALLE BARBARA", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-28", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4193,28 +3455,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS211", - "ref": "FR*SOD*S*CAPS*2*1*_*_", - "name": "GIF - MARCHE DU PARC", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4227,28 +3483,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS212", - "ref": "FR*SOD*S*CAPS*2*1*_*_", - "name": "GIF - MARCHE DU PARC", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4261,28 +3511,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS112", - "ref": "FR*SOD*S*CAPS*1*1*_*_", - "name": "BALLAINVILLIERS - CTRE CIAL ROUILLON", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4295,28 +3539,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS111", - "ref": "FR*SOD*S*CAPS*1*1*_*_", - "name": "BALLAINVILLIERS - CTRE CIAL ROUILLON", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-27", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4329,28 +3567,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4611", - "ref": "FR*SOD*S*CAPS*46*1*_*_", - "name": "MASSY – RUE PIERRE PICARD", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-08", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4363,28 +3595,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4612", - "ref": "FR*SOD*S*CAPS*46*1*_*_", - "name": "MASSY – RUE PIERRE PICARD", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-08", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4397,28 +3623,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4511", - "ref": "FR*SOD*S*CAPS*45*1*_*_", - "name": "LONGJUMEAU - PARKING BRETTEN", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-04-02", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4431,28 +3651,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3912", - "ref": "FR*SOD*S*CAPS*39*1*_*_", - "name": "GIFS -PEUPLIERS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-11-13", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4465,28 +3679,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3412", - "ref": "FR*SOD*S*CAPS*34*1*_*_", - "name": "LA VILLE-DU-BOIS - GRAND NOYER", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-05", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4499,28 +3707,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3512", - "ref": "FR*SOD*S*CAPS*35*1*_*_", - "name": "MONTHLERY - BOURGUIGNONS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-01-06", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4533,28 +3735,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3511", - "ref": "FR*SOD*S*CAPS*35*1*_*_", - "name": "MONTHLERY - BOURGUIGNONS", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-01-06", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4567,28 +3763,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3612", - "ref": "FR*SOD*S*CAPS*36*1*_*_", - "name": "LONGJUMEAU - GARE DE LONGJUMEAU", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-03-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4601,28 +3791,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3611", - "ref": "FR*SOD*S*CAPS*36*1*_*_", - "name": "LONGJUMEAU - GARE DE LONGJUMEAU", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-03-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4635,28 +3819,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3711", - "ref": "FR*SOD*S*CAPS*37*1*_*_", - "name": "MASSY - PLACE ST FIACRE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-03-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4669,28 +3847,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3712", - "ref": "FR*SOD*S*CAPS*37*1*_*_", - "name": "MASSY - PLACE ST FIACRE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-03-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4703,28 +3875,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3812", - "ref": "FR*SOD*S*CAPS*38*1*_*_", - "name": "MASSY - JOLIOT CURIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4737,28 +3903,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS3811", - "ref": "FR*SOD*S*CAPS*38*1*_*_", - "name": "MASSY - JOLIOT CURIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-10", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4771,28 +3931,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4012", - "ref": "FR*SOD*S*CAPS*40*1*_*_", - "name": "LONGJUMEAU - GARE GRAVIGNY-BALIZY", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-05-19", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4805,28 +3959,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4512", - "ref": "FR*SOD*S*CAPS*45*1*_*_", - "name": "LONGJUMEAU - PARKING BRETTEN", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-04-02", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4839,28 +3987,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4011", - "ref": "FR*SOD*S*CAPS*40*1*_*_", - "name": "LONGJUMEAU - GARE GRAVIGNY-BALIZY", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-05-19", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4873,28 +4015,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4112", - "ref": "FR*SOD*S*CAPS*41*1*_*_", - "name": "MASSY - BOUGAINVILLE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-08-03", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4907,28 +4043,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4111", - "ref": "FR*SOD*S*CAPS*41*1*_*_", - "name": "MASSY - BOUGAINVILLE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-08-03", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4941,28 +4071,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4211", - "ref": "FR*SOD*S*CAPS*42*1*_*_", - "name": "VILLEBON - CENTRE JACQUES BREL", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-04-02", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -4975,28 +4099,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4212", - "ref": "FR*SOD*S*CAPS*42*1*_*_", - "name": "VILLEBON - CENTRE JACQUES BREL", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-04-02", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5009,28 +4127,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4311", - "ref": "FR*SOD*S*CAPS*43*1*_*_", - "name": "MASSY - NOYER LAMBERT", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-09-02", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5043,28 +4155,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4312", - "ref": "FR*SOD*S*CAPS*43*1*_*_", - "name": "MASSY - NOYER LAMBERT", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-09-02", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5077,28 +4183,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4412", - "ref": "FR*SOD*S*CAPS*44*1*_*_", - "name": "GIF - GYMNASE COURCELLE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-09-01", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5111,28 +4211,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4411", - "ref": "FR*SOD*S*CAPS*44*1*_*_", - "name": "GIF - GYMNASE COURCELLE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-09-01", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5145,28 +4239,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS4712", - "ref": "FR*SOD*S*CAPS*47*1*_*_", - "name": "MASSY - ALLEE DE QUEBEC", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-08", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5179,28 +4267,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS612", - "ref": "FR*SOD*S*CAPS*6*1*_*_", - "name": "ORSAY - PARKING MAIRIE", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-12", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5213,28 +4295,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref:EU:EVSE": "FRCPSPCAPS512", - "ref": "FR*SOD*S*CAPS*5*1*_*_", - "name": "IGNY- PLACE FRANCOIS COLLET", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-11-26", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5247,28 +4323,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref:EU:EVSE": "FRURWPUNIB2111", - "ref": "FR*SOD*S*UNIB*21*1*_*_", - "name": "LES ULIS", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-17", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5281,28 +4351,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref:EU:EVSE": "FRURWPUNIB2112", - "ref": "FR*SOD*S*UNIB*21*1*_*_", - "name": "LES ULIS", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-17", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5315,28 +4379,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref:EU:EVSE": "FRURWPUNIB2122", - "ref": "FR*SOD*S*UNIB*21*2*_*_", - "name": "LES ULIS", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-17", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5349,28 +4407,22 @@ ] }, "properties": { - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref:EU:EVSE": "FRURWPUNIB2121", - "ref": "FR*SOD*S*UNIB*21*2*_*_", - "name": "LES ULIS", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-17", - "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", - "source:date": "2023-07-29", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5383,28 +4435,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PIGWTYIK1QR", - "ref": "IGWTYIK1QR", - "name": "Fontenay-lès-Briss, Rue du Mont Louvet", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-03-25", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-04-12", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5417,28 +4463,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PIGWTYIK1QR", - "ref": "IGWTYIK1QR", - "name": "Fontenay-lès-Briss, Rue du Mont Louvet", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-03-17", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-05-26", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5451,28 +4491,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PT63G4SSANF", - "ref": "T63G4SSANF", - "name": "Commune Le Mérévillois, Place de l'Hôtel de Ville", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-05-23", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5485,28 +4519,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PT63G4SSANF", - "ref": "T63G4SSANF", - "name": "Commune Le Mérévillois, Place de l'Hôtel de Ville", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-12", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5519,28 +4547,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PT63G4SSANF", - "ref": "T63G4SSANF", - "name": "Commune Le Mérévillois, Place de l'Hôtel de Ville", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-05-23", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5553,28 +4575,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PT63G4SSANF", - "ref": "T63G4SSANF", - "name": "Commune Le Mérévillois, Place de l'Hôtel de Ville", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5587,28 +4603,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", - "ref": "SBPX6OZUXS", - "name": "Viry-Châtillon, avenue du Général de Gaulle", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-07", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5621,28 +4631,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", - "ref": "SBPX6OZUXS", - "name": "Viry-Châtillon, avenue du Général de Gaulle", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-07", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5655,28 +4659,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", - "ref": "SBPX6OZUXS", - "name": "Viry-Châtillon, avenue du Général de Gaulle", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-07", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5689,28 +4687,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", - "ref": "SBPX6OZUXS", - "name": "Viry-Châtillon, avenue du Général de Gaulle", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-07", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5723,28 +4715,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", - "ref": "SBPX6OZUXS", - "name": "Viry-Châtillon, avenue du Général de Gaulle", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-08-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5757,28 +4743,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", - "ref": "SBPX6OZUXS", - "name": "Viry-Châtillon, avenue du Général de Gaulle", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "false", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-08-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5791,28 +4771,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", - "ref": "SBPX6OZUXS", - "name": "Viry-Châtillon, avenue du Général de Gaulle", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-07", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5825,28 +4799,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", - "ref": "SBPX6OZUXS", - "name": "Viry-Châtillon, avenue du Général de Gaulle", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-08-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5859,28 +4827,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMECXL47JEY", - "ref": "MECXL47JEY", - "name": "Mennecy, Burger King", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-07", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5893,28 +4855,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMECXL47JEY", - "ref": "MECXL47JEY", - "name": "Mennecy, Burger King", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-07", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5927,28 +4883,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFLHFYV", - "ref": "FLHFYV", - "name": "Saclay, Best Western", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-10", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5961,28 +4911,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFLHFYV", - "ref": "FLHFYV", - "name": "Saclay, Best Western", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-02-10", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -5995,28 +4939,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJUJD4UMKPZ", - "ref": "JUJD4UMKPZ", - "name": "Ballainvilliers, rue de la Tuilerie", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6029,28 +4967,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", - "ref": "BBYPZLGJJL", - "name": "Sainte-Geneviève-des-Bois Rue du Plessis", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6063,28 +4995,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJUJD4UMKPZ", - "ref": "JUJD4UMKPZ", - "name": "Ballainvilliers, rue de la Tuilerie", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6097,28 +5023,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", - "ref": "BBYPZLGJJL", - "name": "Sainte-Geneviève-des-Bois Rue du Plessis", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6131,28 +5051,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", - "ref": "BBYPZLGJJL", - "name": "Sainte-Geneviève-des-Bois Rue du Plessis", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6165,28 +5079,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", - "ref": "BBYPZLGJJL", - "name": "Sainte-Geneviève-des-Bois Rue du Plessis", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6199,28 +5107,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", - "ref": "BBYPZLGJJL", - "name": "Sainte-Geneviève-des-Bois Rue du Plessis", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6233,28 +5135,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", - "ref": "BBYPZLGJJL", - "name": "Sainte-Geneviève-des-Bois Rue du Plessis", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6267,28 +5163,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", - "ref": "BBYPZLGJJL", - "name": "Sainte-Geneviève-des-Bois Rue du Plessis", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6301,28 +5191,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJUJD4UMKPZ", - "ref": "JUJD4UMKPZ", - "name": "Ballainvilliers, rue de la Tuilerie", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-21", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6335,28 +5219,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", - "ref": "BBYPZLGJJL", - "name": "Sainte-Geneviève-des-Bois Rue du Plessis", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6369,28 +5247,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJUJD4UMKPZ", - "ref": "JUJD4UMKPZ", - "name": "Ballainvilliers, rue de la Tuilerie", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6403,28 +5275,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", - "ref": "MYDGOOZS6R", - "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-03", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6437,28 +5303,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", - "ref": "MYDGOOZS6R", - "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-03", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6471,28 +5331,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", - "ref": "MYDGOOZS6R", - "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6505,28 +5359,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", - "ref": "MYDGOOZS6R", - "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6539,28 +5387,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCOWK19Z19U", - "ref": "COWK19Z19U", - "name": "Ris-Orangis-Langevin, avenue Paul Langevin -3164", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6573,28 +5415,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PHTHA8SVPIE", - "ref": "HTHA8SVPIE", - "name": "Morangis, Avenue Charles de Gaulle -3204", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6607,28 +5443,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", - "ref": "MYDGOOZS6R", - "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6641,28 +5471,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCOWK19Z19U", - "ref": "COWK19Z19U", - "name": "Ris-Orangis-Langevin, avenue Paul Langevin -3164", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6675,28 +5499,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLFKAACIEEF", - "ref": "LFKAACIEEF", - "name": "Corbeil-Essonnes-John-Kennedy, boulevard John Kennedy -3054", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6709,28 +5527,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", - "ref": "MYDGOOZS6R", - "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6743,28 +5555,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLFKAACIEEF", - "ref": "LFKAACIEEF", - "name": "Corbeil-Essonnes-John-Kennedy, boulevard John Kennedy -3054", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6777,28 +5583,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PND7EXY8XAP", - "ref": "ND7EXY8XAP", - "name": "Boussy-Saint-Antoine", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-04-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-03-02", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6811,28 +5611,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PND7EXY8XAP", - "ref": "ND7EXY8XAP", - "name": "Boussy-Saint-Antoine", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-04-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-03-02", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6845,28 +5639,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PND7EXY8XAP", - "ref": "ND7EXY8XAP", - "name": "Boussy-Saint-Antoine", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-04-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-03-02", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6879,28 +5667,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PND7EXY8XAP", - "ref": "ND7EXY8XAP", - "name": "Boussy-Saint-Antoine", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-04-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-03-02", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6913,28 +5695,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PHTHA8SVPIE", - "ref": "HTHA8SVPIE", - "name": "Morangis, Avenue Charles de Gaulle -3204", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6947,28 +5723,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", - "ref": "LLIX5ZKSM1M3T2", - "name": "Evry, SEM Genopole", - "capacity": "9", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -6981,28 +5751,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", - "ref": "LLIX5ZKSM1M3T2", - "name": "Evry, SEM Genopole", - "capacity": "9", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7015,28 +5779,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", - "ref": "LLIX5ZKSM1M3T2", - "name": "Evry, SEM Genopole", - "capacity": "9", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7049,28 +5807,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", - "ref": "LLIX5ZKSM1M3T2", - "name": "Evry, SEM Genopole", - "capacity": "9", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7083,28 +5835,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", - "ref": "LLIX5ZKSM1M3T2", - "name": "Evry, SEM Genopole", - "capacity": "9", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7117,28 +5863,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", - "ref": "LLIX5ZKSM1M3T2", - "name": "Evry, SEM Genopole", - "capacity": "9", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7151,28 +5891,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", - "ref": "LLIX5ZKSM1M3T2", - "name": "Evry, SEM Genopole", - "capacity": "9", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7185,28 +5919,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", - "ref": "LLIX5ZKSM1M3T2", - "name": "Evry, SEM Genopole", - "capacity": "9", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7219,28 +5947,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", - "ref": "LLIX5ZKSM1M3T2", - "name": "Evry, SEM Genopole", - "capacity": "9", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7253,28 +5975,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZOJVYBGVNI", - "ref": "ZOJVYBGVNI", - "name": "Ris-Orangis, Rue Jules Guesde", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-17", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7287,28 +6003,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZOJVYBGVNI", - "ref": "ZOJVYBGVNI", - "name": "Ris-Orangis, Rue Jules Guesde", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-21", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7321,28 +6031,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-06-29", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7355,28 +6059,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-20", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7389,28 +6087,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-19", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7423,28 +6115,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-12", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7457,28 +6143,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7491,28 +6171,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7525,28 +6199,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7559,28 +6227,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7593,28 +6255,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-13", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7627,28 +6283,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-03", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7661,28 +6311,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7695,28 +6339,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7729,28 +6367,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-15", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7763,28 +6395,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-06-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7797,28 +6423,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7831,28 +6451,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEZQEWY01JS", - "ref": "EZQEWY01JS", - "name": "Fleury-Mérogis, Z.I de la Croix Blanche", - "capacity": "16", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-02-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7865,28 +6479,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMQMBBYPLTF", - "ref": "MQMBBYPLTF", - "name": "Le Plessis-Pâté, Geodis", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-22", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7899,28 +6507,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMQMBBYPLTF", - "ref": "MQMBBYPLTF", - "name": "Le Plessis-Pâté, Geodis", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-22", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7933,28 +6535,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PA12RW4GWRR", - "ref": "A12RW4GWRR", - "name": "E.Leclerc Angerville", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -7967,28 +6563,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PA12RW4GWRR", - "ref": "A12RW4GWRR", - "name": "E.Leclerc Angerville", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8001,28 +6591,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PA12RW4GWRR", - "ref": "A12RW4GWRR", - "name": "E.Leclerc Angerville", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8035,28 +6619,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PA12RW4GWRR", - "ref": "A12RW4GWRR", - "name": "E.Leclerc Angerville", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8069,28 +6647,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PA12RW4GWRR", - "ref": "A12RW4GWRR", - "name": "E.Leclerc Angerville", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8103,28 +6675,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PA12RW4GWRR", - "ref": "A12RW4GWRR", - "name": "E.Leclerc Angerville", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8137,28 +6703,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PA12RW4GWRR", - "ref": "A12RW4GWRR", - "name": "E.Leclerc Angerville", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8171,28 +6731,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PA12RW4GWRR", - "ref": "A12RW4GWRR", - "name": "E.Leclerc Angerville", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8205,28 +6759,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", - "ref": "VSSVCNY8HH", - "name": "Villebon-sur-Yvette, Hyundai", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-01-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8239,28 +6787,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", - "ref": "VSSVCNY8HH", - "name": "Villebon-sur-Yvette, Hyundai", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-01-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8273,28 +6815,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", - "ref": "VSSVCNY8HH", - "name": "Villebon-sur-Yvette, Hyundai", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-01-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8307,28 +6843,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", - "ref": "VSSVCNY8HH", - "name": "Villebon-sur-Yvette, Hyundai", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-01-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-13", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8341,28 +6871,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", - "ref": "VSSVCNY8HH", - "name": "Villebon-sur-Yvette, Hyundai", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-01-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8375,28 +6899,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", - "ref": "VSSVCNY8HH", - "name": "Villebon-sur-Yvette, Hyundai", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-01-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8409,28 +6927,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMLAZLGVW42", - "ref": "MLAZLGVW42", - "name": "Monthlery, Route d'Orléans", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-24", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8443,28 +6955,22 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMLAZLGVW42", - "ref": "MLAZLGVW42", - "name": "Monthlery, Route d'Orléans", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-24", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8477,28 +6983,22 @@ ] }, "properties": { - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "306092701", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda - Etampes - 22kW AC ", - "ref:EU:EVSE": "FRZMAE22AC60380", - "ref": "60380", - "name": "Mazda - Etampes - 22kW AC ", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2021-05-05", - "note": "", - "source:date": "2021-05-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8511,28 +7011,22 @@ ] }, "properties": { - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "306092701", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda ETAMPES - GARAGE ST PIERRE", - "ref:EU:EVSE": "FRZMAE22AC57150", - "ref": "57150", - "name": "Mazda - Etampes - 22kW AC ", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2021-04-01", - "note": "", - "source:date": "2021-04-01", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8545,28 +7039,22 @@ ] }, "properties": { - "operator": "COMMUNAUTE DE COMMUNE LE DOURDANNAIS EN HUREPOIX (CCDH)", - "owner:ref:FR:SIREN": "249100595", - "email": "gael.kergroach@ccdourdannais.com", - "phone": "0160811222", - "network": "Bornes VE WattPark/EelDynamic - Av. Eugène Vernholes, Dourdan", - "ref:EU:EVSE": "Non concerné", - "ref": "41fbb9fc-a0af-4524-b7f1-d1b7cddb596a", - "name": "Av. Eugène Vernholes, Dourdan", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "", - "authentication:none": "false", - "payment:credit_cards": "", - "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-03-15", - "note": "", - "source:date": "2023-02-14", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8579,28 +7067,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "320758378", - "email": "garage.mariniere@scache.fr", - "phone": "", - "network": "GARAGE DE LA MARINIERE", - "ref:EU:EVSE": "Non concerné", - "ref": "", - "name": "Parking Garage de la Mariniere", - "capacity": "2", - "socket:typee": "0", - "socket:type2": "0", - "socket:type2_combo": "1", - "socket:chademo": "0", - "fee": "false", - "authentication:none": "false", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2022-12-22", - "note": "", - "source:date": "2023-01-16", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8613,28 +7095,22 @@ ] }, "properties": { - "operator": "", - "owner:ref:FR:SIREN": "320758378", - "email": "garage.mariniere@scache.fr", - "phone": "", - "network": "GARAGE DE LA MARINIERE", - "ref:EU:EVSE": "Non concerné", - "ref": "", - "name": "Parking Garage de la Mariniere", - "capacity": "2", - "socket:typee": "0", - "socket:type2": "1", - "socket:type2_combo": "1", - "socket:chademo": "0", - "fee": "false", - "authentication:none": "false", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2022-12-22", - "note": "", - "source:date": "2023-01-16", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8647,28 +7123,22 @@ ] }, "properties": { - "operator": "EVBOX", - "owner:ref:FR:SIREN": "512678558", - "email": "psasupport@evbox.com", - "phone": "0986877186", - "network": "EVBOX", - "ref:EU:EVSE": "FREVBEEFI7QTSJZTUHGMEVEXMVBQIJ7A", - "ref": "", - "name": "AM5", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "false", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2021-09-23", - "note": "", - "source:date": "2021-09-24", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8681,28 +7151,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF080155", - "ref": "FR*HPC*PNF080155", - "name": "LIMOURS JANVRY", - "capacity": "4", - "socket:typee": "True", - "socket:type2": "True", - "socket:type2_combo": "True", - "socket:chademo": "True", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2019-07-16", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8715,28 +7179,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF080155", - "ref": "FR*HPC*PNF080155", - "name": "LIMOURS JANVRY", - "capacity": "4", - "socket:typee": "True", - "socket:type2": "True", - "socket:type2_combo": "True", - "socket:chademo": "True", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2019-07-16", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8749,28 +7207,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF080155", - "ref": "FR*HPC*PNF080155", - "name": "LIMOURS JANVRY", - "capacity": "4", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "True", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2019-07-16", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8783,28 +7235,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF080155", - "ref": "FR*HPC*PNF080155", - "name": "LIMOURS JANVRY", - "capacity": "4", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "True", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2019-07-16", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8817,28 +7263,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF058968", - "ref": "FR*HPC*PNF058968", - "name": "RELAIS VILLABE", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "True", - "socket:chademo": "True", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2022-07-29", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8851,28 +7291,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF058968", - "ref": "FR*HPC*PNF058968", - "name": "RELAIS VILLABE", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2022-07-29", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8885,28 +7319,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF058968", - "ref": "FR*HPC*PNF058968", - "name": "RELAIS VILLABE", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2022-07-29", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8919,28 +7347,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF058968", - "ref": "FR*HPC*PNF058968", - "name": "RELAIS VILLABE", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2022-07-29", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8953,28 +7375,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF058968", - "ref": "FR*HPC*PNF058968", - "name": "RELAIS VILLABE", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2022-07-29", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -8987,28 +7403,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF058968", - "ref": "FR*HPC*PNF058968", - "name": "RELAIS VILLABE", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2022-07-29", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9021,28 +7431,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF058968", - "ref": "FR*HPC*PNF058968", - "name": "RELAIS VILLABE", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2022-07-29", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9055,28 +7459,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF058968", - "ref": "FR*HPC*PNF058968", - "name": "RELAIS VILLABE", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "True", - "socket:chademo": "True", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Non accessible", - "start_date": "2022-07-29", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9089,28 +7487,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF006369", - "ref": "FR*HPC*PNF006369", - "name": "RELAIS LES LISSES", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-30", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9123,28 +7515,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF006369", - "ref": "FR*HPC*PNF006369", - "name": "RELAIS LES LISSES", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "True", - "socket:chademo": "True", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-30", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9157,28 +7543,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF006369", - "ref": "FR*HPC*PNF006369", - "name": "RELAIS LES LISSES", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-04-17", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9191,28 +7571,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF006369", - "ref": "FR*HPC*PNF006369", - "name": "RELAIS LES LISSES", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-30", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9225,28 +7599,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF006369", - "ref": "FR*HPC*PNF006369", - "name": "RELAIS LES LISSES", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-30", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9259,28 +7627,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF006369", - "ref": "FR*HPC*PNF006369", - "name": "RELAIS LES LISSES", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-30", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9293,28 +7655,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF006369", - "ref": "FR*HPC*PNF006369", - "name": "RELAIS LES LISSES", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-04-17", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9327,28 +7683,22 @@ ] }, "properties": { - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref:EU:EVSE": "FRHPCPNF006369", - "ref": "FR*HPC*PNF006369", - "name": "RELAIS LES LISSES", - "capacity": "8", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "True", - "socket:chademo": "True", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "False", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-30", - "note": "", - "source:date": "2023-07-06", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9361,28 +7711,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DSUB", - "ref": "", - "name": "Système U - DRAVEIL", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2022-08-09", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9395,28 +7739,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DSUB", - "ref": "", - "name": "Système U - DRAVEIL", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2022-08-09", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9429,28 +7767,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DSUB", - "ref": "", - "name": "Système U - DRAVEIL", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2022-08-09", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9463,28 +7795,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DSUA", - "ref": "", - "name": "Système U - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2022-08-09", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9497,28 +7823,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DSUA", - "ref": "", - "name": "Système U - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2022-08-09", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9531,28 +7851,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91BMPA", - "ref": "", - "name": "Stations-e - Marcel Pagnol - BOUSSY ST ANTOINE", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2020-06-30", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9565,28 +7879,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91BSCA", - "ref": "", - "name": "Stations-e - Clos Auchin - BOUSSY ST ANTOINE", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2020-12-15", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9599,28 +7907,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91BSCA", - "ref": "", - "name": "Stations-e - Clos Auchin - BOUSSY ST ANTOINE", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2020-12-15", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9633,28 +7935,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91BSCA", - "ref": "", - "name": "Stations-e - Clos Auchin - BOUSSY ST ANTOINE", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2020-12-15", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9667,28 +7963,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91BSPA", - "ref": "", - "name": "Piscine des Sénart - BOUSSY ST ANTOINE", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-04-14", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9701,28 +7991,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91BSPA", - "ref": "", - "name": "Piscine des Sénart - BOUSSY ST ANTOINE", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-04-14", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9735,28 +8019,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DBCA", - "ref": "", - "name": "Médiathèque Théâtre Donald Cardwell - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-12-22", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9769,28 +8047,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DBCA", - "ref": "", - "name": "Médiathèque Théâtre Donald Cardwell - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-12-22", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9803,28 +8075,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DBGA", - "ref": "", - "name": "Gymnase Citadelle - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-12-22", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9837,28 +8103,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DBGA", - "ref": "", - "name": "Gymnase Citadelle - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-12-22", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9871,28 +8131,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DBPA", - "ref": "", - "name": "Piscine Caneton - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-08-31", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9905,28 +8159,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DBPA", - "ref": "", - "name": "Piscine Caneton - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-08-31", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9939,28 +8187,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DBQA", - "ref": "", - "name": "Aqua Sénart 3 - Enceinte piscine - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-08-31", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -9973,28 +8215,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DBQA", - "ref": "", - "name": "Aqua Sénart 3 - Enceinte piscine - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2021-08-31", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10007,28 +8243,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DCAA", - "ref": "", - "name": "Centre administratif - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2022-03-03", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10041,28 +8271,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91DCAA", - "ref": "", - "name": "Centre administratif - DRAVEIL", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2022-03-03", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10075,28 +8299,22 @@ ] }, "properties": { - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "ref:EU:EVSE": "FRSE1PSE91BMPA", - "ref": "", - "name": "Stations-e - Marcel Pagnol - BOUSSY ST ANTOINE", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Non accessible", - "start_date": "2020-06-30", - "note": "", - "source:date": "2023-06-02", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10109,28 +8327,22 @@ ] }, "properties": { - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "", - "email": "contact@e-totem.fr", - "phone": "", - "network": "Garage de la Marinière", - "ref:EU:EVSE": "FRG10P91235A", - "ref": "FRG10P91235A", - "name": "Garage de la Marinière", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "", - "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-01-06", - "note": "", - "source:date": "2023-06-12", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10143,28 +8355,22 @@ ] }, "properties": { - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "", - "email": "contact@e-totem.fr", - "phone": "", - "network": "Garage de la Marinière", - "ref:EU:EVSE": "FRG10P91235A", - "ref": "FRG10P91235A", - "name": "Garage de la Marinière", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "", - "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-01-06", - "note": "", - "source:date": "2023-06-12", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10177,28 +8383,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91432A", - "ref": "", - "name": "Metropolis - Express - Morangis - Eglise", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-22", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10211,28 +8411,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91432A", - "ref": "", - "name": "Metropolis - Express - Morangis - Eglise", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-22", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10245,28 +8439,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91432A", - "ref": "", - "name": "Metropolis - Express - Morangis - Eglise", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "false", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-22", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10279,28 +8467,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91432A", - "ref": "", - "name": "Metropolis - Express - Morangis - Eglise", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-22", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10313,28 +8495,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91432A", - "ref": "", - "name": "Metropolis - Express - Morangis - Eglise", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-22", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10347,28 +8523,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91326A", - "ref": "", - "name": "Metropolis - Express - Juvisy-sur-Orge - Cour de France", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-03", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10381,28 +8551,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91326A", - "ref": "", - "name": "Metropolis - Express - Juvisy-sur-Orge - Cour de France", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-03", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10415,28 +8579,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91326A", - "ref": "", - "name": "Metropolis - Express - Juvisy-sur-Orge - Cour de France", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-03", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10449,28 +8607,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91326A", - "ref": "", - "name": "Metropolis - Express - Juvisy-sur-Orge - Cour de France", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-03", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10483,28 +8635,22 @@ ] }, "properties": { - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "ref:EU:EVSE": "FRMGPP91326A", - "ref": "", - "name": "Metropolis - Express - Juvisy-sur-Orge - Cour de France", - "capacity": "1", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2023-02-03", - "note": "", - "source:date": "2023-06-05", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10517,28 +8663,22 @@ ] }, "properties": { - "operator": "alterna energie", - "owner:ref:FR:SIREN": "200034460", - "email": "electricite@alterna-energie.fr", - "phone": "0179356309", - "network": "alterna energie", - "ref:EU:EVSE": "FRA68P68021001", - "ref": "aceaf454-19e2-4da1-96dd-d7fdc44a72d1 ", - "name": "Villebon sur yvette", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "false", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-10-04", - "note": "", - "source:date": "2022-02-21", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10551,28 +8691,22 @@ ] }, "properties": { - "operator": "EDF", - "owner:ref:FR:SIREN": "200034460", - "email": "rcgc@edf.fr", - "phone": "0426700227", - "network": "EDF", - "ref:EU:EVSE": "FRA68P68021001", - "ref": "ccf6edd2-80ae-4131-9af8-cc81544f8a98 ", - "name": "Dourdan", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "false", - "payment:credit_cards": "false", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-12-15", - "note": "", - "source:date": "2022-02-22", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10585,28 +8719,22 @@ ] }, "properties": { - "operator": "OCR MAINTENANCE ELECTRONIQUE", - "owner:ref:FR:SIREN": "402923643", - "email": "g.arpino@ocr.fr", - "phone": "0680074537", - "network": "OCR MAINTENANCE ELECTRONIQUE", - "ref:EU:EVSE": "FRA68P68021001", - "ref": "c8ee7876-9261-497e-9f6b-856d3bf94e3f", - "name": "Villebon sur yvette", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "false", - "payment:credit_cards": "true", - "reservation": "true", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-01-12", - "note": "", - "source:date": "2022-02-09", - "socket:type2_cable": "" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "yes", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10619,28 +8747,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA3", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "694034", - "name": "WAAT/FRWATLHW9HHL6J", - "capacity": "2", - "socket:typee": "True", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-01-06", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10653,28 +8775,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA3", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "694034", - "name": "WAAT/FRWATLHW9HHL6J", - "capacity": "2", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-01-06", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10687,28 +8803,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741645", - "name": "WAAT/FRWA3L94CRR7KA", - "capacity": "2", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10721,28 +8831,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA4", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "789195", - "name": "WAAT/FRWATLMOTDFQ9E", - "capacity": "3", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-05-05", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10755,28 +8859,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA4", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "789195", - "name": "WAAT/FRWATLMOTDFQ9E", - "capacity": "3", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-05-05", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10789,28 +8887,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA4", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "789195", - "name": "WAAT/FRWATLMOTDFQ9E", - "capacity": "3", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-05-05", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10823,28 +8915,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741645", - "name": "WAAT/FRWA3L94CRR7KA", - "capacity": "2", - "socket:typee": "True", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10857,28 +8943,22 @@ ] }, "properties": { - "operator": "WattzHub | FR*SMI", - "owner:ref:FR:SIREN": "", - "email": "contact@wattzhub.com", - "phone": "", - "network": "WattzHub", - "ref:EU:EVSE": "Non concerné", - "ref": "510419", - "name": "WattzHub/625fc63fb907c5cc90734800", - "capacity": "2", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "False", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-06-28", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10891,28 +8971,22 @@ ] }, "properties": { - "operator": "WattzHub | FR*SMI", - "owner:ref:FR:SIREN": "", - "email": "contact@wattzhub.com", - "phone": "", - "network": "WattzHub", - "ref:EU:EVSE": "Non concerné", - "ref": "510419", - "name": "WattzHub/625fc63fb907c5cc90734800", - "capacity": "2", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "False", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-04-21", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10925,28 +8999,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WAT", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "690500", - "name": "WAAT/FRWATLYYZQRJIS", - "capacity": "1", - "socket:typee": "True", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2022-12-30", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10959,28 +9027,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741702", - "name": "WAAT/FRWATLRCFIE15G", - "capacity": "4", - "socket:typee": "True", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -10993,28 +9055,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741702", - "name": "WAAT/FRWATLRCFIE15G", - "capacity": "4", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -11027,28 +9083,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741702", - "name": "WAAT/FRWATLRCFIE15G", - "capacity": "4", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -11061,28 +9111,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741705", - "name": "WAAT/FRWATLRRQFZAKL", - "capacity": "4", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -11095,28 +9139,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741705", - "name": "WAAT/FRWATLRRQFZAKL", - "capacity": "4", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -11129,28 +9167,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741705", - "name": "WAAT/FRWATLRRQFZAKL", - "capacity": "4", - "socket:typee": "True", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -11163,28 +9195,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741705", - "name": "WAAT/FRWATLRRQFZAKL", - "capacity": "4", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -11197,28 +9223,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WA6", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "741702", - "name": "WAAT/FRWATLRCFIE15G", - "capacity": "4", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2023-02-24", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -11231,28 +9251,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WAT", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "577478", - "name": "WAAT/FRWATLFD4WWPK5", - "capacity": "2", - "socket:typee": "False", - "socket:type2": "False", - "socket:type2_combo": "True", - "socket:chademo": "True", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2022-09-02", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } }, { @@ -11265,28 +9279,22 @@ ] }, "properties": { - "operator": "WAAT SAS | FR*WAT", - "owner:ref:FR:SIREN": "", - "email": "exploitation@waat.fr", - "phone": "", - "network": "WAAT", - "ref:EU:EVSE": "Non concerné", - "ref": "577478", - "name": "WAAT/FRWATLFD4WWPK5", - "capacity": "2", - "socket:typee": "False", - "socket:type2": "True", - "socket:type2_combo": "False", - "socket:chademo": "False", - "fee": "False", - "authentication:none": "True", - "payment:credit_cards": "", - "reservation": "False", - "wheelchair": "Accessibilité inconnue", - "start_date": "", - "note": "", - "source:date": "2022-09-02", - "socket:type2_cable": "False" + "operator": "no", + "owner:ref:FR:SIREN": "no", + "email": "no", + "phone": "no", + "network": "no", + "ref:EU:EVSE": "no", + "ref": "no", + "name": "no", + "capacity": "no", + "reservation": "no", + "opening_hours": "no", + "wheelchair": "no", + "start_date": "no", + "note": "no", + "source:date": "no", + "socket:type2_cable": "no" } } ] diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json index 7ba8d107..b8d52c33 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json @@ -11,28 +11,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMMGYMF", - "ref": "MMGYMF", - "name": "Saint-Denis, Renault", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -45,28 +45,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMMGYMF", - "ref": "MMGYMF", - "name": "Saint-Denis, Renault", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -79,28 +79,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PRLWJHC", - "ref": "RLWJHC", - "name": "Le Port, Renault", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -113,28 +113,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMMGYMF", - "ref": "MMGYMF", - "name": "Saint-Denis, Renault", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-11-18", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -147,28 +147,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLNCRPQ", - "ref": "LNCRPQ", - "name": "Saint-Pierre, Renault", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-10-06", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -181,28 +181,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLNCRPQ", - "ref": "LNCRPQ", - "name": "Saint-Pierre, Renault", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-10-06", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -215,28 +215,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLNCRPQ", - "ref": "LNCRPQ", - "name": "Saint-Pierre, Renault", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -249,28 +249,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PRLWJHC", - "ref": "RLWJHC", - "name": "Le Port, Renault", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -283,28 +283,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLNCRPQ", - "ref": "LNCRPQ", - "name": "Saint-Pierre, Renault", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -317,28 +317,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PMMGYMF", - "ref": "MMGYMF", - "name": "Saint-Denis, Renault", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-12-27", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-11-14", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -351,28 +351,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PPIPHPE34WD", - "ref": "PIPHPE34WD", - "name": "Saint-Paul, Renault", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-03", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -385,28 +385,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCZWNSB", - "ref": "CZWNSB", - "name": "Sainte-Clotilde, Centre Commercial Grand Nord", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2018-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -419,28 +419,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCZWNSB", - "ref": "CZWNSB", - "name": "Sainte-Clotilde, Centre Commercial Grand Nord", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2018-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -453,28 +453,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PL6DAT3JJ7M", - "ref": "L6DAT3JJ7M", - "name": "Saint Pierre, Centre Commercial Grand Sud", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-07", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -487,28 +487,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PL6DAT3JJ7M", - "ref": "L6DAT3JJ7M", - "name": "Saint Pierre, Centre Commercial Grand Sud", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-07", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -521,28 +521,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCZWNSB", - "ref": "CZWNSB", - "name": "Sainte-Clotilde, Centre Commercial Grand Nord", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2018-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -555,28 +555,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCZWNSB", - "ref": "CZWNSB", - "name": "Sainte-Clotilde, Centre Commercial Grand Nord", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2018-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -589,28 +589,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCZWNSB", - "ref": "CZWNSB", - "name": "Sainte-Clotilde, Centre Commercial Grand Nord", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2018-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -623,28 +623,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCZWNSB", - "ref": "CZWNSB", - "name": "Sainte-Clotilde, Centre Commercial Grand Nord", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2018-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -657,28 +657,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PWSZO153YAE", - "ref": "WSZO153YAE", - "name": "Sainte-Suzanne, Centre Commercial Grand Est P1", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-14", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -691,28 +691,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PWSZO153YAE", - "ref": "WSZO153YAE", - "name": "Sainte-Suzanne, Centre Commercial Grand Est P1", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-14", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -725,28 +725,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZSBWTUJWGI", - "ref": "ZSBWTUJWGI", - "name": "Sainte-Suzanne, Centre Commercial Grand Est P2", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-14", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -759,28 +759,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZSBWTUJWGI", - "ref": "ZSBWTUJWGI", - "name": "Sainte-Suzanne, Centre Commercial Grand Est P2", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-14", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -793,28 +793,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZSBWTUJWGI", - "ref": "ZSBWTUJWGI", - "name": "Sainte-Suzanne, Centre Commercial Grand Est P2", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-14", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -827,28 +827,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZSBWTUJWGI", - "ref": "ZSBWTUJWGI", - "name": "Sainte-Suzanne, Centre Commercial Grand Est P2", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-14", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -861,28 +861,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1POSU51U9FJZ", - "ref": "OSU51U9FJZ", - "name": "Saint-Denis , Rue Stanislas Gimart", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-04-24", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -895,28 +895,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1POSU51U9FJZ", - "ref": "OSU51U9FJZ", - "name": "Saint-Denis , Rue Stanislas Gimart", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-04-24", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -929,28 +929,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", - "ref": "FCGRS7CQWI", - "name": "Saint-Denis, Rue du stade de l’est", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -963,28 +963,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", - "ref": "FCGRS7CQWI", - "name": "Saint-Denis, Rue du stade de l’est", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -997,28 +997,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", - "ref": "FCGRS7CQWI", - "name": "Saint-Denis, Rue du stade de l’est", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1031,28 +1031,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", - "ref": "FCGRS7CQWI", - "name": "Saint-Denis, Rue du stade de l’est", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1065,28 +1065,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", - "ref": "FCGRS7CQWI", - "name": "Saint-Denis, Rue du stade de l’est", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1099,28 +1099,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", - "ref": "FCGRS7CQWI", - "name": "Saint-Denis, Rue du stade de l’est", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-11-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1133,28 +1133,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PYKR9MTGPDS", - "ref": "YKR9MTGPDS", - "name": "CIVIS - Parking Volnay", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-10-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1167,28 +1167,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PYKR9MTGPDS", - "ref": "YKR9MTGPDS", - "name": "CIVIS - Parking Volnay", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-10-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1201,28 +1201,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PDRECSOIEMU", - "ref": "DRECSOIEMU", - "name": "CIVIS - Parking Cadjee", - "capacity": "3", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-10-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1235,28 +1235,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PDRECSOIEMU", - "ref": "DRECSOIEMU", - "name": "CIVIS - Parking Cadjee", - "capacity": "3", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-10-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-18", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1269,28 +1269,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFRILS7BK9O", - "ref": "FRILS7BK9O", - "name": "CIVIS - Parking Luc Donat", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-10-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1303,28 +1303,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFRILS7BK9O", - "ref": "FRILS7BK9O", - "name": "CIVIS - Parking Luc Donat", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-10-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1337,28 +1337,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PDRECSOIEMU", - "ref": "DRECSOIEMU", - "name": "CIVIS - Parking Cadjee", - "capacity": "3", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-10-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1371,28 +1371,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBTVTHJ", - "ref": "BTVTHJ", - "name": "Saint-Pierre, Norauto", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-01-17", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-11-19", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1405,28 +1405,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEWGRIN70CW", - "ref": "EWGRIN70CW", - "name": "Saint-Benoît, Centre commercial Beaulieu", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-11-10", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1439,28 +1439,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEWGRIN70CW", - "ref": "EWGRIN70CW", - "name": "Saint-Benoît, Centre commercial Beaulieu", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-11-10", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1473,28 +1473,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBTVTHJ", - "ref": "BTVTHJ", - "name": "Saint-Pierre, Norauto", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-01-17", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-11-19", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1507,28 +1507,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBTVTHJ", - "ref": "BTVTHJ", - "name": "Saint-Pierre, Norauto", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-01-17", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-11-19", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1541,28 +1541,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBTVTHJ", - "ref": "BTVTHJ", - "name": "Saint-Pierre, Norauto", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2019-01-17", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-10-06", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1575,28 +1575,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBLIDF9PFDM", - "ref": "BLIDF9PFDM", - "name": "Saint-Pierre, Mr Bricolage", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-02-03", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1609,28 +1609,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBLIDF9PFDM", - "ref": "BLIDF9PFDM", - "name": "Saint-Pierre, Mr Bricolage", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-02-03", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1643,28 +1643,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PHOT2JOEZEY", - "ref": "HOT2JOEZEY", - "name": "Sainte-Clotilde, Mr Bricolage", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-02-03", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1677,28 +1677,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PHOT2JOEZEY", - "ref": "HOT2JOEZEY", - "name": "Sainte-Clotilde, Mr Bricolage", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-02-03", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1711,28 +1711,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", - "ref": "AK6LDZLLUO", - "name": "St Denis, JCA", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1745,28 +1745,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", - "ref": "AK6LDZLLUO", - "name": "St Denis, JCA", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1779,28 +1779,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", - "ref": "EPSOXWJL5C", - "name": "OLA Energy Pierrefonds Réunion, Parking", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1813,28 +1813,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", - "ref": "EPSOXWJL5C", - "name": "OLA Energy Pierrefonds Réunion, Parking", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1847,28 +1847,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", - "ref": "EPSOXWJL5C", - "name": "OLA Energy Pierrefonds Réunion, Parking", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-08", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1881,28 +1881,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", - "ref": "EPSOXWJL5C", - "name": "OLA Energy Pierrefonds Réunion, Parking", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-17", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1915,28 +1915,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", - "ref": "EPSOXWJL5C", - "name": "OLA Energy Pierrefonds Réunion, Parking", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-09", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1949,28 +1949,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", - "ref": "EPSOXWJL5C", - "name": "OLA Energy Pierrefonds Réunion, Parking", - "capacity": "6", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-03-17", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "true" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -1983,28 +1983,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", - "ref": "LI6JTMDSG0", - "name": "St Denis, JCA", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2017,28 +2017,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSPEEDYREUSUZ", - "ref": "Speedyreusuz", - "name": "Speedy Réunion, Sainte Suzanne", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-11-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-10-06", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2051,28 +2051,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSPEEDYREUSUZ", - "ref": "Speedyreusuz", - "name": "Speedy Réunion, Sainte Suzanne", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-11-13", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-10-06", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2085,28 +2085,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", - "ref": "LI6JTMDSG0", - "name": "St Denis, JCA", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2119,28 +2119,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", - "ref": "LI6JTMDSG0", - "name": "St Denis, JCA", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2153,28 +2153,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", - "ref": "LI6JTMDSG0", - "name": "St Denis, JCA", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2187,28 +2187,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", - "ref": "LI6JTMDSG0", - "name": "St Denis, JCA", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2221,28 +2221,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", - "ref": "LI6JTMDSG0", - "name": "St Denis, JCA", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2255,28 +2255,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", - "ref": "AK6LDZLLUO", - "name": "St Denis, JCA", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2289,28 +2289,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", - "ref": "AK6LDZLLUO", - "name": "St Denis, JCA", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2323,28 +2323,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", - "ref": "AK6LDZLLUO", - "name": "St Denis, JCA", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2357,28 +2357,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", - "ref": "LI6JTMDSG0", - "name": "St Denis, JCA", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2391,28 +2391,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", - "ref": "LI6JTMDSG0", - "name": "St Denis, JCA", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-15", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2425,28 +2425,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", - "ref": "AK6LDZLLUO", - "name": "St Denis, JCA", - "capacity": "6", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "true", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-02-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2459,28 +2459,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PGMHWFA6XWU", - "ref": "GMHWFA6XWU", - "name": "Société Marchande de Carburant, Saint-Denis", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-09-04", - "note": "Autre paiements : compte prépayé.", - "source:date": "2022-10-06", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2493,28 +2493,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PENGENCAFRES", - "ref": "Engencafres", - "name": "Engen, Plaine-des-Cafres avec partenariat", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-09-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-21", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2527,28 +2527,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PENGENLAGON", - "ref": "Engenlagon", - "name": "Engen, Lagon avec partenariat", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-09-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-21", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2561,28 +2561,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PENGENSTPIER", - "ref": "Engenstpier", - "name": "Engen, RD26 avec partenariat", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-09-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2595,28 +2595,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PENGENCILAOS", - "ref": "Engencilaos", - "name": "Engen, Cilaos avec partenariat", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-09-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2629,28 +2629,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PENGENGUILL", - "ref": "Engenguill", - "name": "Engen, Le Guillaume avec partenariat", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-09-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2663,28 +2663,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PRITQEFPOJM", - "ref": "RITQEFPOJM", - "name": "Engen, L'Eperon - Saint-Paul IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2697,28 +2697,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PO2JITRMIMN", - "ref": "O2JITRMIMN", - "name": "Engen, La Plaine - Saint-Paul IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-01-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2731,28 +2731,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEQRCK1OHOC", - "ref": "EQRCK1OHOC", - "name": "Engen, Oasis - Le Port IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-01-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2765,28 +2765,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PEQRCK1OHOC", - "ref": "EQRCK1OHOC", - "name": "Engen, Oasis - Le Port IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2799,28 +2799,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PGWXQ3IKEQL", - "ref": "GWXQ3IKEQL", - "name": "Engen, Ligne Paradis - Saint-Pierre IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-01-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2833,28 +2833,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZCT8UV6EN8", - "ref": "ZCT8UV6EN8", - "name": "Engen, La Possession IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-01-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2867,28 +2867,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PGWXQ3IKEQL", - "ref": "GWXQ3IKEQL", - "name": "Engen, Ligne Paradis - Saint-Pierre IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2901,28 +2901,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZCT8UV6EN8", - "ref": "ZCT8UV6EN8", - "name": "Engen, La Possession IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2935,28 +2935,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PAVGUJC2YHB", - "ref": "AVGUJC2YHB", - "name": "Engen, Sainte-Marie Beauséjour IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -2969,28 +2969,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PO2JITRMIMN", - "ref": "O2JITRMIMN", - "name": "Engen, La Plaine - Saint-Paul IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3003,28 +3003,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PRITQEFPOJM", - "ref": "RITQEFPOJM", - "name": "Engen, L'Eperon - Saint-Paul IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-01-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3037,28 +3037,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PAVGUJC2YHB", - "ref": "AVGUJC2YHB", - "name": "Engen, Sainte-Marie Beauséjour IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-01-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3071,28 +3071,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLG2QVY6WC6", - "ref": "LG2QVY6WC6", - "name": "Engen, Marli IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3105,28 +3105,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLG2QVY6WC6", - "ref": "LG2QVY6WC6", - "name": "Engen, Marli IES", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-11", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-23", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3139,28 +3139,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PENGENSTBEN", - "ref": "Engenstben", - "name": "Engen, Saint-Benoît Bras-Fusil avec partenariat", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-09-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3173,28 +3173,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PENGENSTEMARI", - "ref": "Engenstemari", - "name": "Engen, Sainte-Marie Beauséjour avec partenariat", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-09-19", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3207,28 +3207,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PVORHPZSFUA", - "ref": "VORHPZSFUA", - "name": "Engen, Les Avirons Hager", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-14", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3241,28 +3241,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLQAKGFHXPA", - "ref": "LQAKGFHXPA", - "name": "Engen, Ravine Blanche - Saint-Pierre Hager", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3275,28 +3275,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PRR8JDRWME6", - "ref": "RR8JDRWME6", - "name": "Engen, Oasis - Le Port Hager", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3309,28 +3309,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJPMAOIPEVR", - "ref": "JPMAOIPEVR", - "name": "Engen, Chaudron - Saint-Denis Hager", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-22", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3343,28 +3343,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PGHOQAEUSKQ", - "ref": "GHOQAEUSKQ", - "name": "Engen, La Possession Hager", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3377,28 +3377,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSTBENOITJAURES", - "ref": "stbenoitjaures", - "name": "TotalEnergies, Saint-Benoit", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-02-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3411,28 +3411,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCNMYXQ1FIG", - "ref": "CNMYXQ1FIG", - "name": "TotalEnergies, Bd Sud", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "true" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3445,28 +3445,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSALINETAMARIN", - "ref": "salinetamarin", - "name": "TotalEnergies, Tamarins", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3479,28 +3479,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSTECLOTILDE", - "ref": "steclotilde", - "name": "TotalEnergies, Butor", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3513,28 +3513,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSAINTEMARIEN2", - "ref": "saintemarien2", - "name": "TotalEnergies, Ste-Marie-les-Cafés", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3547,28 +3547,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSAINTEMARIEN2", - "ref": "saintemarien2", - "name": "TotalEnergies, Ste-Marie-les-Cafés", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3581,28 +3581,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSTPHILIPREUNI", - "ref": "stphilipreuni", - "name": "TotalEnergies, Saint-Philippe", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3615,28 +3615,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSALINETAMARIN", - "ref": "salinetamarin", - "name": "TotalEnergies, Tamarins", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3649,28 +3649,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PCNMYXQ1FIG", - "ref": "CNMYXQ1FIG", - "name": "TotalEnergies, Bd Sud", - "capacity": "2", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "true" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3683,28 +3683,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PPIERREFONDSRN", - "ref": "pierrefondsrn", - "name": "TotalEnergies, Pierrefond", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "true" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3717,28 +3717,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSKSFD8QFSZ", - "ref": "SKSFD8QFSZ", - "name": "Total, Lacaussade", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3751,28 +3751,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBMMQ9BPZYD", - "ref": "BMMQ9BPZYD", - "name": "TotalEnergies, Piscine", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-10-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-20", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3785,28 +3785,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSTGILLESTAMA", - "ref": "stgillestama", - "name": "TotalEnergies, Théâtre", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "true" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3819,28 +3819,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSTPIERRELEGOL", - "ref": "stpierrelegol", - "name": "TotalEnergies, Le Gol", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-05-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3853,28 +3853,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PLEPORTZAC2000", - "ref": "leportzac2000", - "name": "TotalEnergies, ZAC 2000", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "true" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3887,28 +3887,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJ2WYHZVZ7P", - "ref": "J2WYHZVZ7P", - "name": "TotalEnergies, La Châtoire", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-05-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "true" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3921,28 +3921,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSTANDREIDF", - "ref": "standreidf", - "name": "TotalEnergies, Saint-André", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-05-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "true" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3955,28 +3955,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSHRWKOFQRZ", - "ref": "SHRWKOFQRZ", - "name": "Sainte Suzanne, Burger King La Marine", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-21", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -3989,28 +3989,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSHRWKOFQRZ", - "ref": "SHRWKOFQRZ", - "name": "Sainte Suzanne, Burger King La Marine", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-17", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4023,28 +4023,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PPOSSESSJOLIZAC", - "ref": "possessjolizac", - "name": "TotalEnergies, Moulin Joli", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4057,28 +4057,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSHRWKOFQRZ", - "ref": "SHRWKOFQRZ", - "name": "Sainte Suzanne, Burger King La Marine", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4091,28 +4091,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSHRWKOFQRZ", - "ref": "SHRWKOFQRZ", - "name": "Sainte Suzanne, Burger King La Marine", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4125,28 +4125,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZPQVODGTYL", - "ref": "ZPQVODGTYL", - "name": "TotalEnergies, La Marine", - "capacity": "5", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-17", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4159,28 +4159,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZPQVODGTYL", - "ref": "ZPQVODGTYL", - "name": "TotalEnergies, La Marine", - "capacity": "5", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4193,28 +4193,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZPQVODGTYL", - "ref": "ZPQVODGTYL", - "name": "TotalEnergies, La Marine", - "capacity": "5", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4227,28 +4227,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZPQVODGTYL", - "ref": "ZPQVODGTYL", - "name": "TotalEnergies, La Marine", - "capacity": "5", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "false", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-17", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4261,28 +4261,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZPQVODGTYL", - "ref": "ZPQVODGTYL", - "name": "TotalEnergies, La Marine", - "capacity": "5", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-09-26", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4295,28 +4295,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PTHLHDS2GGN", - "ref": "THLHDS2GGN", - "name": "TotalEnergies, Begue", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4329,28 +4329,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PSTPIERREBOIS", - "ref": "stpierrebois", - "name": "TotalEnergies, Cambuston", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4363,28 +4363,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PTHLHDS2GGN", - "ref": "THLHDS2GGN", - "name": "TotalEnergies, Begue", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4397,28 +4397,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBRASPANON2002", - "ref": "braspanon2002", - "name": "TotalEnergies, Bras-Panon", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2017-06-21", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-05-05", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4431,28 +4431,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1POF2V5RUQC2", - "ref": "OF2V5RUQC2", - "name": "Saint-Leu, Rue du Pressoir", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4465,28 +4465,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PC2AJENOGKE", - "ref": "C2AJENOGKE", - "name": "3 Brasseurs Saint Pierre", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4499,28 +4499,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PQIGUDGQUCV", - "ref": "QIGUDGQUCV", - "name": "Burger King Saint Pierre", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4533,28 +4533,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PC2AJENOGKE", - "ref": "C2AJENOGKE", - "name": "3 Brasseurs Saint Pierre", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4567,28 +4567,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PC2AJENOGKE", - "ref": "C2AJENOGKE", - "name": "3 Brasseurs Saint Pierre", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-24", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4601,28 +4601,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1POF2V5RUQC2", - "ref": "OF2V5RUQC2", - "name": "Saint-Leu, Rue du Pressoir", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4635,28 +4635,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PC2AJENOGKE", - "ref": "C2AJENOGKE", - "name": "3 Brasseurs Saint Pierre", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4669,28 +4669,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1POF2V5RUQC2", - "ref": "OF2V5RUQC2", - "name": "Saint-Leu, Rue du Pressoir", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4703,28 +4703,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1POF2V5RUQC2", - "ref": "OF2V5RUQC2", - "name": "Saint-Leu, Rue du Pressoir", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4737,28 +4737,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBUE8MYS7P9", - "ref": "BUE8MYS7P9", - "name": "Super U Etang Salé", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4771,28 +4771,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBUE8MYS7P9", - "ref": "BUE8MYS7P9", - "name": "Super U Etang Salé", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4805,28 +4805,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PPDIWE44BBM", - "ref": "PDIWE44BBM", - "name": "Burger King Saint Louis", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4839,28 +4839,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBUE8MYS7P9", - "ref": "BUE8MYS7P9", - "name": "Super U Etang Salé", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4873,28 +4873,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PASJPOGWDW9", - "ref": "ASJPOGWDW9", - "name": "Tennis Club Saint Pierre", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-02", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4907,28 +4907,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PM8SKCP6RWC", - "ref": "M8SKCP6RWC", - "name": "Atlas Saint André", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4941,28 +4941,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PM8SKCP6RWC", - "ref": "M8SKCP6RWC", - "name": "Atlas Saint André", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -4975,28 +4975,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PASJPOGWDW9", - "ref": "ASJPOGWDW9", - "name": "Tennis Club Saint Pierre", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-02", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5009,28 +5009,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PBUE8MYS7P9", - "ref": "BUE8MYS7P9", - "name": "Super U Etang Salé", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5043,28 +5043,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PM8SKCP6RWC", - "ref": "M8SKCP6RWC", - "name": "Atlas Saint André", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-25", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5077,28 +5077,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PPDIWE44BBM", - "ref": "PDIWE44BBM", - "name": "Burger King Saint Louis", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5111,28 +5111,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PASJPOGWDW9", - "ref": "ASJPOGWDW9", - "name": "Tennis Club Saint Pierre", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-02", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5145,28 +5145,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PQIGUDGQUCV", - "ref": "QIGUDGQUCV", - "name": "Burger King Saint Pierre", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5179,28 +5179,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PASJPOGWDW9", - "ref": "ASJPOGWDW9", - "name": "Tennis Club Saint Pierre", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-06-02", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5213,28 +5213,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFE7WITDLPX", - "ref": "FE7WITDLPX", - "name": "Boulodrome - Plaine des Palmistes", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-11-02", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5247,28 +5247,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PFE7WITDLPX", - "ref": "FE7WITDLPX", - "name": "Boulodrome - Plaine des Palmistes", - "capacity": "2", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-11-02", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5281,28 +5281,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PM8SKCP6RWC", - "ref": "M8SKCP6RWC", - "name": "Atlas Saint André", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-28", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5315,28 +5315,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PWPC00KCZXZ", - "ref": "WPC00KCZXZ", - "name": "Super U - Saint André", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "true", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5349,28 +5349,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PWPC00KCZXZ", - "ref": "WPC00KCZXZ", - "name": "Super U - Saint André", - "capacity": "4", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5383,28 +5383,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PWPC00KCZXZ", - "ref": "WPC00KCZXZ", - "name": "Super U - Saint André", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5417,28 +5417,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PWPC00KCZXZ", - "ref": "WPC00KCZXZ", - "name": "Super U - Saint André", - "capacity": "4", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-10-31", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5451,28 +5451,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PRUIVJ6JIHW", - "ref": "RUIVJ6JIHW", - "name": "Saint-Leu, Rue du trésor", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-03-17", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5485,28 +5485,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZ5YRCO4MCH", - "ref": "Z5YRCO4MCH", - "name": "Le Port, Avenue Lénine, Parking Oasis 4ème étage", - "capacity": "3", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-09", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-06", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5519,28 +5519,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZ5YRCO4MCH", - "ref": "Z5YRCO4MCH", - "name": "Le Port, Avenue Lénine, Parking Oasis 4ème étage", - "capacity": "3", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-09", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-06-29", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5553,28 +5553,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PZ5YRCO4MCH", - "ref": "Z5YRCO4MCH", - "name": "Le Port, Avenue Lénine, Parking Oasis 4ème étage", - "capacity": "3", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-09-09", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-06-29", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5587,28 +5587,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PPOYTUZYBZT", - "ref": "POYTUZYBZT", - "name": "Engen Etang Salé DELTA", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-11-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5621,28 +5621,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1POJHMGCHDSF", - "ref": "OJHMGCHDSF", - "name": "Engen, Saint-Benoît Bras-Fusil DELTA", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-12-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-19", - "socket:type2_cable": "true" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5655,28 +5655,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1POJHMGCHDSF", - "ref": "OJHMGCHDSF", - "name": "Engen, Saint-Benoît Bras-Fusil DELTA", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2020-10-30", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5689,28 +5689,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PPOYTUZYBZT", - "ref": "POYTUZYBZT", - "name": "Engen Etang Salé DELTA", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-11-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5723,28 +5723,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1POJHMGCHDSF", - "ref": "OJHMGCHDSF", - "name": "Engen, Saint-Benoît Bras-Fusil DELTA", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2021-01-20", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-26", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5757,28 +5757,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PPOYTUZYBZT", - "ref": "POYTUZYBZT", - "name": "Engen Etang Salé DELTA", - "capacity": "3", - "socket:typee": "false", - "socket:type2": "false", - "socket:type2_combo": "true", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-11-18", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5791,28 +5791,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", - "ref": "YQWPOFVGFO", - "name": "E.Leclerc, Piton-Saint-Leu", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-06", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5825,28 +5825,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", - "ref": "YQWPOFVGFO", - "name": "E.Leclerc, Piton-Saint-Leu", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-06", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5859,28 +5859,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", - "ref": "YQWPOFVGFO", - "name": "E.Leclerc, Piton-Saint-Leu", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-06", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5893,28 +5893,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", - "ref": "YQWPOFVGFO", - "name": "E.Leclerc, Piton-Saint-Leu", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-06", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5927,28 +5927,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", - "ref": "YQWPOFVGFO", - "name": "E.Leclerc, Piton-Saint-Leu", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-06", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5961,28 +5961,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", - "ref": "YQWPOFVGFO", - "name": "E.Leclerc, Piton-Saint-Leu", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-06", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -5995,28 +5995,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", - "ref": "YQWPOFVGFO", - "name": "E.Leclerc, Piton-Saint-Leu", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-06", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6029,28 +6029,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", - "ref": "YQWPOFVGFO", - "name": "E.Leclerc, Piton-Saint-Leu", - "capacity": "8", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-06-06", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6063,28 +6063,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6097,28 +6097,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6131,28 +6131,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6165,28 +6165,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6199,28 +6199,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6233,28 +6233,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-05", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6267,28 +6267,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6301,28 +6301,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6335,28 +6335,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-08", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6369,28 +6369,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6403,28 +6403,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6437,28 +6437,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-01", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6471,28 +6471,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6505,28 +6505,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", - "ref": "NVOX3RW4SD", - "name": "E.Leclerc, La Réserve", - "capacity": "14", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2023-01-16", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6539,28 +6539,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", - "ref": "JNNF0FAFIC", - "name": "Saint-Pierre, IMMODEX", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6573,28 +6573,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", - "ref": "JNNF0FAFIC", - "name": "Saint-Pierre, IMMODEX", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-22", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6607,28 +6607,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", - "ref": "JNNF0FAFIC", - "name": "Saint-Pierre, IMMODEX", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-22", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6641,28 +6641,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", - "ref": "JNNF0FAFIC", - "name": "Saint-Pierre, IMMODEX", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-27", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6675,28 +6675,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", - "ref": "JNNF0FAFIC", - "name": "Saint-Pierre, IMMODEX", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6709,28 +6709,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", - "ref": "JNNF0FAFIC", - "name": "Saint-Pierre, IMMODEX", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6743,28 +6743,28 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", - "ref": "JNNF0FAFIC", - "name": "Saint-Pierre, IMMODEX", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } }, { @@ -6777,74 +6777,7 @@ ] }, "properties": { - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", - "ref": "JNNF0FAFIC", - "name": "Saint-Pierre, IMMODEX", - "capacity": "8", - "socket:typee": "false", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessibilité inconnue", - "start_date": "2022-07-12", - "note": "Autre paiements : compte prépayé.", - "source:date": "2023-07-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3159294128418, - -20.949535369873047 - ] - }, - "properties": { - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "901985804", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001601", - "ref": "", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3159294128418, - -20.949535369873047 - ] - }, - "properties": { + "amenity": "charging_station", "operator": "CAR2PLUG", "owner:ref:FR:SIREN": "901985804", "email": "contact@car2plug.fr", @@ -6854,53 +6787,18 @@ "ref": "", "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", + "opening_hours": "24/7", "start_date": "2021-09-01", "note": "Paiement par smartphone, et applications", "source:date": "2021-11-23", - "socket:type2_cable": "" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3159294128418, - -20.949535369873047 - ] - }, - "properties": { - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "901985804", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001601", - "ref": "", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", - "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "" + "socket:type2_cable": "no" } }, { @@ -6913,6 +6811,7 @@ ] }, "properties": { + "amenity": "charging_station", "operator": "CAR2PLUG", "owner:ref:FR:SIREN": "901985804", "email": "contact@car2plug.fr", @@ -6922,19 +6821,120 @@ "ref": "", "name": "EASYPLUG SEMIR LE PORT", "capacity": "1", - "socket:typee": "true", - "socket:type2": "true", - "socket:type2_combo": "false", - "socket:chademo": "false", - "fee": "false", - "authentication:none": "true", - "payment:credit_cards": "true", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", "reservation": "false", - "wheelchair": "Accessible mais non réservé PMR", + "opening_hours": "24/7", "start_date": "2021-09-01", "note": "Paiement par smartphone, et applications", "source:date": "2021-11-23", - "socket:type2_cable": "" + "socket:type2_cable": "no" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3159294128418, + -20.949535369873047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "false", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3159294128418, + -20.949535369873047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "false", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3159294128418, + -20.949535369873047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "false", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "no" } } ]